tests.system.providers.amazon.aws.tests.test_aws_auth_manager

Module Contents

Classes

TestAwsAuthManager

Run tests on Airflow using AWS auth manager with real credentials

Functions

create_avp_policy_store(env_id)

env_id()

region_name()

avp_policy_store_id(env_id)

base_app(region_name, avp_policy_store_id)

client_no_permissions(base_app)

client_admin_permissions(base_app)

Attributes

SAML_METADATA_URL

SAML_METADATA_PARSED

AVP_POLICY_ADMIN

env_id_cache

policy_store_id_cache

tests.system.providers.amazon.aws.tests.test_aws_auth_manager.SAML_METADATA_URL = '/saml/metadata'[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.SAML_METADATA_PARSED[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.AVP_POLICY_ADMIN = Multiline-String[source]
Show Value
"""
permit (
    principal in Airflow::Group::"Admin",
    action,
    resource
);
"""
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.env_id_cache: str | None[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.policy_store_id_cache: str | None[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.create_avp_policy_store(env_id)[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.env_id()[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.region_name()[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.avp_policy_store_id(env_id)[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.base_app(region_name, avp_policy_store_id)[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.client_no_permissions(base_app)[source]
tests.system.providers.amazon.aws.tests.test_aws_auth_manager.client_admin_permissions(base_app)[source]
class tests.system.providers.amazon.aws.tests.test_aws_auth_manager.TestAwsAuthManager[source]

Run tests on Airflow using AWS auth manager with real credentials

classmethod teardown_class()[source]
classmethod delete_avp_policy_store()[source]
test_login_no_permissions(client_no_permissions)[source]
test_login_admin(client_admin_permissions)[source]

Was this entry helpful?