-
Notifications
You must be signed in to change notification settings - Fork 3.2k
[Identity] Add multi-tenant live testing #34257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
sdk/identity/azure-identity/tests/test_multi_tenant_auth.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # ------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See LICENSE.txt in the project root for | ||
| # license information. | ||
| # ------------------------------------------------------------------------- | ||
| import os | ||
|
|
||
| import pytest | ||
| from devtools_testutils import AzureRecordedTestCase, is_live | ||
| from azure.core import PipelineClient | ||
| from azure.core.rest import HttpRequest, HttpResponse | ||
| from azure.identity import ClientSecretCredential | ||
|
|
||
|
|
||
| class TestMultiTenantAuth(AzureRecordedTestCase): | ||
| def _send_request(self, credential: ClientSecretCredential) -> HttpResponse: | ||
| client = PipelineClient(base_url="https://graph.microsoft.com") | ||
| token = credential.get_token("https://graph.microsoft.com/.default") | ||
| headers = {"Authorization": "Bearer " + token.token, "ConsistencyLevel": "eventual"} | ||
| request = HttpRequest("GET", "https://graph.microsoft.com/v1.0/applications/$count", headers=headers) | ||
| response = client.send_request(request) | ||
| return response | ||
|
|
||
| @pytest.mark.skipif( | ||
| is_live() and not os.environ.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_ID"), | ||
| reason="Multi-tenant envvars not configured.", | ||
| ) | ||
| def test_multi_tenant_client_secret_graph_call(self, recorded_test, environment_variables): | ||
| client_id = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_ID") | ||
| tenant_id = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_TENANT_ID") | ||
| client_secret = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_SECRET") | ||
| credential = ClientSecretCredential(tenant_id, client_id, client_secret) | ||
| response = self._send_request(credential) | ||
| assert response.status_code == 200 | ||
| assert int(response.text()) > 0 |
37 changes: 37 additions & 0 deletions
37
sdk/identity/azure-identity/tests/test_multi_tenant_auth_async.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # ------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See LICENSE.txt in the project root for | ||
| # license information. | ||
| # ------------------------------------------------------------------------- | ||
| import os | ||
|
|
||
| import pytest | ||
| from devtools_testutils import AzureRecordedTestCase, is_live | ||
| from azure.core import AsyncPipelineClient | ||
| from azure.core.rest import HttpRequest, HttpResponse | ||
| from azure.identity.aio import ClientSecretCredential | ||
|
|
||
|
|
||
| class TestMultiTenantAuthAsync(AzureRecordedTestCase): | ||
| async def _send_request(self, credential: ClientSecretCredential) -> HttpResponse: | ||
| client = AsyncPipelineClient(base_url="https://graph.microsoft.com") | ||
| token = await credential.get_token("https://graph.microsoft.com/.default") | ||
| headers = {"Authorization": "Bearer " + token.token, "ConsistencyLevel": "eventual"} | ||
| request = HttpRequest("GET", "https://graph.microsoft.com/v1.0/applications/$count", headers=headers) | ||
| response = await client.send_request(request, stream=False) | ||
| return response | ||
|
|
||
| @pytest.mark.asyncio | ||
| @pytest.mark.skipif( | ||
| is_live() and not os.environ.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_ID"), | ||
| reason="Multi-tenant envvars not configured.", | ||
| ) | ||
| async def test_multi_tenant_client_secret_graph_call(self, recorded_test, environment_variables): | ||
| client_id = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_ID") | ||
| tenant_id = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_TENANT_ID") | ||
| client_secret = environment_variables.get("AZURE_IDENTITY_MULTI_TENANT_CLIENT_SECRET") | ||
| credential = ClientSecretCredential(tenant_id, client_id, client_secret) | ||
| async with credential: | ||
| response = await self._send_request(credential) | ||
| assert response.status_code == 200 | ||
| assert int(response.text()) > 0 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.