Best Python code snippet using hypothesis
__init__.py
Source:__init__.py
1def add_endpoints(disp):2 # Versions3 disp.add_endpoint('versions', '/')4 # V3 API - http://api.openstack.org/api-ref-identity.html#identity-v35 disp.add_endpoint('v3_auth_index', '/v3')6 # Tokens7 disp.add_endpoint('v3_auth_tokens', '/v3/auth/tokens')8 # Service Catalog9 disp.add_endpoint('v3_services', '/v3/services')10 disp.add_endpoint('v3_services_with_id', '/v3/services/{service_id}')11 # Endpoints12 disp.add_endpoint('v3_endpoints', '/v3/endpoints')13 disp.add_endpoint('v3_endpoints_with_id',14 '/v3/endpoints/{endpoint_id}')15 # Domains16 disp.add_endpoint('v3_domains', '/v3/domains')17 disp.add_endpoint('v3_domains_with_id',18 '/v3/domains/{domain_id}')19 disp.add_endpoint('v3_domain_user_roles',20 '/v3/domains/{domain_id}/users/{user_id}'21 '/roles')22 disp.add_endpoint('v3_domain_user_role',23 '/v3/domains/{domain_id}/users/{user_id}'24 '/role/{role_id}')25 disp.add_endpoint('v3_domain_group_roles',26 '/v3/domains/{domain_id}/groups/{group_id}'27 '/roles')28 disp.add_endpoint('v3_domain_group_role',29 '/v3/domains/{domain_id}/groups/{group_id}'30 '/role/{role_id}')31 # Projects32 disp.add_endpoint('v3_projects', '/v3/projects')33 disp.add_endpoint('v3_projects_with_id',34 '/v3/projects/{project_id}')35 disp.add_endpoint('v3_project_users',36 '/v3/projects/{project_id}/users')37 disp.add_endpoint('v3_project_user_roles',38 '/v3/projects/{project_id}/users/{user_id}'39 '/roles')40 disp.add_endpoint('v3_project_user_role',41 '/v3/projects/{project_id}/users/{user_id}'42 '/roles/{role_id}')43 disp.add_endpoint('v3_project_group_roles',44 '/v3/projects/{project_id}/groups/{group_id}'45 '/roles')46 disp.add_endpoint('v3_project_role',47 '/v3/projects/{project_id}/{role_id}')48 # Users49 disp.add_endpoint('v3_users', '/v3/users')50 disp.add_endpoint('v3_user', '/v3/users/{user_id}')51 disp.add_endpoint('v3_user_groups',52 '/v3/users/{user_id}/groups')53 disp.add_endpoint('v3_user_projects',54 '/v3/users/{user_id}/projects')55 disp.add_endpoint('v3_user_roles', '/v3/users/{user_id}/roles')56 # Groups57 disp.add_endpoint('v3_groups', '/v3/groups')58 disp.add_endpoint('v3_group', '/v3/groups/{group_id}')59 disp.add_endpoint('v3_group_users',60 '/v3/groups/{group_id}/users')61 disp.add_endpoint('v3_group_user',62 '/v3/groups/{group_id}/users/{user_id}')63 # Credentials64 disp.add_endpoint('v3_credentails', '/v3/credentials')65 disp.add_endpoint('v3_credentail',66 '/v3/credentials/{credential_id}')67 # Roles68 disp.add_endpoint('v3_roles', '/v3/roles')69 disp.add_endpoint('v3_role', '/v3/roles/{role_id}')70 disp.add_endpoint('v3_role_users', '/v3/roles/{role_id}/users')71 # Policies72 disp.add_endpoint('v3_policies', '/v3/policies')73 disp.add_endpoint('v3_policy', '/v3/policies/{policy_id}')74 # V2.0 - http://api.openstack.org/api-ref-identity.html#identity75 # NOTE - These endpoint are used by both the regular 2.0 and the admin76 # 2.0 APIs at the same time!77 disp.add_endpoint('v2_auth_index', '/v2.0')78 disp.add_endpoint('v2_extensions', '/v2.0/extensions')79 disp.add_endpoint('v2_extension_alias',80 '/v2.0/extensions/{alias}')81 disp.add_endpoint('v2_tokens', '/v2.0/tokens')82 disp.add_endpoint('v2_token_tenants', '/v2.0/tokens/tenants')83 # V2.0 Admin API84 # http://api.openstack.org/api-ref-identity.html#identity-admin-v2.085 # This list only includes those not defined above.86 disp.add_endpoint('v2_token', '/v2.0/tokens/{token_id}')87 disp.add_endpoint('v2_token_endpoints',88 '/v2.0/tokens/{token_id}/endpoints')89 disp.add_endpoint('v2_users', '/v2.0/users')90 disp.add_endpoint('v2_user', '/v2.0/users/{user_id}')91 disp.add_endpoint('v2_user_roles',92 '/v2.0/users/{user_id}/roles')93 disp.add_endpoint('v2_tenants', '/v2.0/tenants')94 disp.add_endpoint('v2_tenant', '/v2.0/tenants/{tenant_id}')95 disp.add_endpoint('v2_tenant_user_roles',...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!