1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE.txt in the project root for
# license information.
# -------------------------------------------------------------------------
import asyncio
import time
from unittest.mock import Mock
from devtools_testutils.perfstress_tests import PerfStressTest
from azure.core.credentials import AccessToken
from azure.core.pipeline import AsyncPipeline, Pipeline
from azure.core.pipeline.policies import AsyncBearerTokenCredentialPolicy, BearerTokenCredentialPolicy
from azure.core.pipeline.transport import HttpRequest
class BearerTokenPolicyTest(PerfStressTest):
def __init__(self, arguments):
super().__init__(arguments)
token = AccessToken("**", int(time.time() + 3600))
self.request = HttpRequest("GET", "https://localhost")
credential = Mock(spec_set=["get_token"], get_token=Mock(return_value=token))
self.pipeline = Pipeline(transport=Mock(), policies=[BearerTokenCredentialPolicy(credential=credential)])
get_token_future = asyncio.Future()
get_token_future.set_result(token)
async_credential = Mock(spec_set=["get_token"], get_token=Mock(return_value=get_token_future))
send_future = asyncio.Future()
send_future.set_result(Mock())
async_transport = Mock(send=Mock(return_value=send_future))
self.async_pipeline = AsyncPipeline(
async_transport, policies=[AsyncBearerTokenCredentialPolicy(credential=async_credential)]
)
def run_sync(self):
self.pipeline.run(self.request)
async def run_async(self):
await self.async_pipeline.run(self.request)
|