authentik.api.tests.test_view_authn_authz

 1from collections.abc import Callable
 2from inspect import getmembers
 3
 4from django.urls import reverse
 5from rest_framework.test import APITestCase
 6from rest_framework.views import APIView
 7from rest_framework.viewsets import GenericViewSet
 8
 9from authentik.lib.utils.reflection import all_subclasses
10
11
12class TestAPIViewAuthnAuthz(APITestCase): ...
13
14
15def api_viewset_action(viewset: GenericViewSet, member: Callable) -> Callable:
16    """Test API Viewset action"""
17
18    def tester(self: TestAPIViewAuthnAuthz):
19        if "permission_classes" in member.kwargs:
20            self.assertNotEqual(
21                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
22            )
23        if "authentication_classes" in member.kwargs:
24            self.assertNotEqual(
25                member.kwargs["authentication_classes"],
26                [],
27                "authentication_classes should not be empty",
28            )
29
30    return tester
31
32
33def api_view(view: APIView) -> Callable:
34
35    def tester(self: TestAPIViewAuthnAuthz):
36        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
37        self.assertNotEqual(
38            view.authentication_classes,
39            [],
40            "authentication_classes should not be empty",
41        )
42
43    return tester
44
45
46# Tell django to load all URLs
47reverse("authentik_core:root-redirect")
48for viewset in all_subclasses(GenericViewSet):
49    for act_name, member in getmembers(viewset(), lambda x: isinstance(x, Callable)):
50        if not hasattr(member, "kwargs") or not hasattr(member, "mapping"):
51            continue
52        setattr(
53            TestAPIViewAuthnAuthz,
54            f"test_viewset_{viewset.__name__}_action_{act_name}",
55            api_viewset_action(viewset, member),
56        )
57for view in all_subclasses(APIView):
58    setattr(
59        TestAPIViewAuthnAuthz,
60        f"test_view_{view.__name__}",
61        api_view(view),
62    )
class TestAPIViewAuthnAuthz(rest_framework.test.APITestCase):
13class TestAPIViewAuthnAuthz(APITestCase): ...

Similar to TransactionTestCase, but use transaction.atomic() to achieve test isolation.

In most situations, TestCase should be preferred to TransactionTestCase as it allows faster execution. However, there are some situations where using TransactionTestCase might be necessary (e.g. testing some transactional behavior).

On database backends with no transaction support, TestCase behaves as TransactionTestCase.

def test_viewset_AccessTokenViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_agent_config( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_auth_fed( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_auth_ia( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_check_in( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_enroll( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_mdm_config( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AgentConnectorViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ApplicationEntitlementViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ApplicationViewSet_action_check_access( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ApplicationViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatedSessionViewSet_action_bulk_delete( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatedSessionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorDuoStageViewSet_action_enrollment_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorDuoStageViewSet_action_import_device_manual( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorDuoStageViewSet_action_import_devices_automatic( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorDuoStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorEmailStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorEndpointGDTCStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorSMSStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorStaticStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorTOTPStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorValidateStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthenticatorWebAuthnStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_AuthorizationCodeViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BlueprintInstanceViewSet_action_apply( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BlueprintInstanceViewSet_action_available( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BlueprintInstanceViewSet_action_import_( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BlueprintInstanceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BrandViewSet_action_current( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_BrandViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_CaptchaStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_CertificateKeyPairViewSet_action_generate( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_CertificateKeyPairViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_CertificateKeyPairViewSet_action_view_certificate( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_CertificateKeyPairViewSet_action_view_private_key( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ConnectionTokenViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ConnectorViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ConnectorViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ConsentStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DenyStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DeviceAccessGroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DeviceUserBindingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DeviceViewSet_action_summary( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DockerServiceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DummyPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DummyStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_DuoDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EmailDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EmailStageViewSet_action_templates( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EmailStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EndpointDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EndpointStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EndpointViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EnrollmentTokenViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EnrollmentTokenViewSet_action_view_key( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventMatcherPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventViewSet_action_actions( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventViewSet_action_export( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventViewSet_action_stats( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventViewSet_action_top_per_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_EventViewSet_action_volume( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ExpressionPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FleetConnectorViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowStageBindingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_cache_clear( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_cache_info( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_diagram( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_execute( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_export( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_FlowViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GeoIPPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleChromeConnectorViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderGroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderUserViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderViewSet_action_sync_object( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderViewSet_action_sync_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GoogleWorkspaceProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupKerberosSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupLDAPSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupOAuthSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupPlexSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupSAMLSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupTelegramSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupViewSet_action_add_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupViewSet_action_remove_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_GroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_IdentificationStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_InitialPermissionsViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_InvitationStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_InvitationViewSet_action_send_email( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_InvitationViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_IterationViewSet_action_latest_iteration( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_IterationViewSet_action_open_iterations( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_KerberosSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_KerberosSourceViewSet_action_sync_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_KerberosSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_KubernetesServiceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPOutpostConfigViewSet_action_check_access( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPSourceViewSet_action_debug( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPSourceViewSet_action_sync_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LDAPSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LicenseViewSet_action_forecast( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LicenseViewSet_action_install_id( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LicenseViewSet_action_summary( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_LicenseViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderGroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderUserViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderViewSet_action_sync_object( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderViewSet_action_sync_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MicrosoftEntraProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_MutualTLSStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationRuleViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationTransportViewSet_action_test( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationTransportViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationViewSet_action_mark_all_seen( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_NotificationWebhookMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuth2ProviderViewSet_action_preview_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuth2ProviderViewSet_action_setup_urls( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuth2ProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuthSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuthSourceViewSet_action_source_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OAuthSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OutpostViewSet_action_default_settings( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OutpostViewSet_action_health( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_OutpostViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PasswordExpiryPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PasswordPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PasswordStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PlexSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PlexSourceViewSet_action_redeem_token( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PlexSourceViewSet_action_redeem_token_authenticated( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PlexSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyBindingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyViewSet_action_cache_clear( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyViewSet_action_cache_info( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyViewSet_action_test( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PromptStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PromptViewSet_action_preview( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PromptViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PropertyMappingViewSet_action_test( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PropertyMappingViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_PropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ProviderViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ProxyProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RACPropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RACProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RadiusOutpostConfigViewSet_action_check_access( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RadiusProviderPropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RadiusProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RedirectStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RefreshTokenViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ReputationPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ReputationViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RoleAssignedPermissionViewSet_action_assign( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RoleAssignedPermissionViewSet_action_unassign( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RoleViewSet_action_add_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RoleViewSet_action_remove_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_RoleViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLPropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLProviderViewSet_action_import_metadata( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLProviderViewSet_action_metadata( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLProviderViewSet_action_preview_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLSourceViewSet_action_metadata( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SAMLSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMProviderGroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMProviderUserViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMProviderViewSet_action_sync_object( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMProviderViewSet_action_sync_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMSourceGroupViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMSourceUserViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SCIMSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SMSDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SSFProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ScheduleViewSet_action_send( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ScopeMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ServiceConnectionViewSet_action_state( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ServiceConnectionViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_ServiceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SourceStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SourceViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_SourceViewSet_action_user_settings( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_StageViewSet_action_types( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_StageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_StageViewSet_action_user_settings( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_StaticDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TOTPDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TaskViewSet_action_retry( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TaskViewSet_action_status( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TelegramSourcePropertyMappingViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TelegramSourceViewSet_action_connect_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TelegramSourceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TenantViewSet_action_create_admin_group( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TenantViewSet_action_create_recovery_key( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TokenViewSet_action_set_key( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TokenViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_TokenViewSet_action_view_key( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UniquePasswordPolicyViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserConsentViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserDeleteStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserKerberosSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserLDAPSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserLoginStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserLogoutStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserOAuthSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserPlexSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserSAMLSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserTelegramSourceConnectionViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_export( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_impersonate( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_impersonate_end( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_paths( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_recovery( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_recovery_email( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_service_account( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_set_password( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserViewSet_action_user_me( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_UserWriteStageViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_WSFederationProviderViewSet_action_metadata( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_WSFederationProviderViewSet_action_preview_user( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_WSFederationProviderViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_viewset_WebAuthnDeviceViewSet_action_used_by( self: TestAPIViewAuthnAuthz):
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )

The type of the None singleton.

def test_view_APIRootView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AccessTokenViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AgentConnectorViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ApplicationEntitlementViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ApplicationViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AppsViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatedSessionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorDuoStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorEmailStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorEndpointGDTCStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorSMSStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorStaticStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorTOTPStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorValidateStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthenticatorWebAuthnStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_AuthorizationCodeViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_BlueprintInstanceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_BrandViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_CaptchaStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_CertificateKeyPairViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ConfigView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ConfigurationView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ConnectionTokenViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ConnectorViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ConsentStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_CreateAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DataExportViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DenyStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DestroyAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DeviceAccessGroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DeviceUserBindingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DockerServiceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DomainViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DummyPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DummyStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DuoAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_DuoDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EmailAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EmailDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EmailStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EndpointAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EndpointDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EndpointStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EndpointViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EnrollmentTokenViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EventMatcherPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_EventViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ExpressionPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FileUsedByView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FileView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FleetConnectorViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FlowExecutorView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FlowInspectorView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FlowStageBindingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_FlowViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GenericAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GenericViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GeoIPPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GoogleChromeConnectorViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GoogleWorkspaceProviderGroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GoogleWorkspaceProviderMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GoogleWorkspaceProviderUserViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GoogleWorkspaceProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupKerberosSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupLDAPSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupOAuthSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupPlexSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupSAMLSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupTelegramSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_GroupsView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ISO3166View( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_IdentificationStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_InitialPermissionsViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_InvitationStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_InvitationViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_IterationViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_KerberosSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_KerberosSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_KubernetesServiceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LDAPOutpostConfigViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LDAPProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LDAPSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LDAPSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LicenseViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_LifecycleRuleViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ListAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ListCreateAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_MicrosoftEntraProviderGroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_MicrosoftEntraProviderMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_MicrosoftEntraProviderUserViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_MicrosoftEntraProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ModelViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_MutualTLSStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_NotificationRuleViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_NotificationTransportViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_NotificationViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_NotificationWebhookMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_OAuth2ProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_OAuthSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_OAuthSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_OutpostViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PasswordExpiryPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PasswordPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PasswordStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PlexSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PlexSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PolicyBindingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PromptStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PromptViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_PropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ProxyOutpostConfigViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ProxyProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RACPropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RACProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RBACPermissionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RadiusOutpostConfigViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RadiusProviderPropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RadiusProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ReadOnlyModelViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RedirectStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RefreshTokenViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RegisterDeviceView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RegisterUserView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ReputationPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ReputationViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ResourceTypesView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RetrieveAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RetrieveDestroyAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RetrieveUpdateAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RetrieveUpdateDestroyAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ReviewViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RoleAssignedPermissionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RolePermissionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_RoleViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SAMLPropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SAMLProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SAMLSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SAMLSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMObjectView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMProviderGroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMProviderUserViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMRootView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMSourceGroupViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMSourceUserViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SCIMView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SMSAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SMSDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SSFProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SSFStreamViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SSFView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ScheduleViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SchemaView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ScopeMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ServiceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ServiceProviderConfigView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SettingsView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SourceStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularJSONAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularRedocView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularSwaggerSplitView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularSwaggerView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SpectacularYAMLAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_StageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_StaticAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_StaticDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_StreamView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_SystemView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TOTPAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TOTPDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TaskViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TelegramSourcePropertyMappingViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TelegramSourceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TenantViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TokenViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_TransactionalApplicationView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UniquePasswordPolicyViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UpdateAPIView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserConsentViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserDeleteStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserKerberosSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserLDAPSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserLoginStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserLogoutStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserOAuthSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserPlexSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserSAMLSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserTelegramSourceConnectionViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UserWriteStageViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_UsersView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_VersionHistoryViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_VersionView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_ViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_WSFederationProviderViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_WebAuthnAdminDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_WebAuthnDeviceTypeViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_WebAuthnDeviceViewSet( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def test_view_WorkerView( self: TestAPIViewAuthnAuthz):
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )

The type of the None singleton.

def api_viewset_action( viewset: rest_framework.viewsets.GenericViewSet, member: Callable) -> Callable:
16def api_viewset_action(viewset: GenericViewSet, member: Callable) -> Callable:
17    """Test API Viewset action"""
18
19    def tester(self: TestAPIViewAuthnAuthz):
20        if "permission_classes" in member.kwargs:
21            self.assertNotEqual(
22                member.kwargs["permission_classes"], [], "permission_classes should not be empty"
23            )
24        if "authentication_classes" in member.kwargs:
25            self.assertNotEqual(
26                member.kwargs["authentication_classes"],
27                [],
28                "authentication_classes should not be empty",
29            )
30
31    return tester

Test API Viewset action

def api_view(view: rest_framework.views.APIView) -> Callable:
34def api_view(view: APIView) -> Callable:
35
36    def tester(self: TestAPIViewAuthnAuthz):
37        self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty")
38        self.assertNotEqual(
39            view.authentication_classes,
40            [],
41            "authentication_classes should not be empty",
42        )
43
44    return tester