Skip to content
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

{Core} Refactor CredentialAdaptor #29955

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft

{Core} Refactor CredentialAdaptor #29955

wants to merge 1 commit into from

Conversation

jiasli
Copy link
Member

@jiasli jiasli commented Sep 23, 2024

Description
Azure/azure-sdk-for-python#36565 and Azure/azure-sdk-for-python#36882 introduced a new token acquisition protocol called get_token_info.

Azure CLI has to support 3 types of protocols:

  1. Track 1: signed_session
  2. Track 2: get_token
  3. Track 2 new: get_token_info

This PR makes following changes:

  1. Decouple UserCredential and ServicePrincipalCredential from SDK and make them return MSAL token dict
  2. Move AccessToken's building logic to CredentialAdaptor

Copy link

azure-client-tools-bot-prd bot commented Sep 23, 2024

❌AzureCLI-FullTest
🔄acr
🔄latest
🔄3.11
🔄3.9
🔄acs
🔄latest
🔄3.11
🔄3.9
🔄advisor
🔄latest
🔄3.11
🔄3.9
❌ams
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_ams_encryption_set_show self = <azure.cli.testsdk.base.ExecutionResult object at 0x7f040c751fd0>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7f040fa5b410>
command = 'ams account create -n ams000004 -g clitest.rg000001 --storage-account clitest000002 -l centralus --mi-system-assigned --default-action Allow'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.11/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_encryption_scenarios.AmsEncryptionTests testMethod=test_ams_encryption_set_show>
resource_group = 'clitest.rg000001'
storage_account_for_create = 'clitest000002', key_vault = 'clitest000003'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_create')
    @KeyVaultPreparer(location='centralus', additional_params='--enable-purge-protection')
    def test_ams_encryption_set_show(self, resource_group, storage_account_for_create, key_vault):
        amsname = self.create_random_name(prefix='ams', length=12)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_create,
            'location': 'centralus',
            'keySource': 'CustomerKey',
            'keyVault': key_vault,
            'keyName': self.create_random_name(prefix='ams', length=12),
            'identityPermissions': "get unwrapkey wrapkey",
        })
    
>       account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --mi-system-assigned --default-action Allow', checks=[
            self.check('name', '{amsname}'),
            self.check('location', 'Central US')
        ])

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py:26: 
 
                                       
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7f040c29da10>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py:9
Failed test_ams_account_filter_create_and_show self = <azure.cli.testsdk.base.ExecutionResult object at 0x7f040c7bd4d0>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7f041465ac90>
command = 'ams account create -n ams000003 -g clitest.rg000001 --storage-account clitest000002 -l northcentralus'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.11/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_filter_scenarios.AmsAccountFilterTests testMethod=test_ams_account_filter_create_and_show>
storage_account_for_create_and_show = 'clitest000002'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_create_and_show')
    def test_ams_account_filter_create_and_show(self, storage_account_for_create_and_show):
        amsname = self.create_random_name(prefix='ams', length=12)
        filter_name = self.create_random_name(prefix='filter', length=12)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_create_and_show,
            'location': 'northcentralus',
            'filterName': filter_name,
            'firstQuality': 420,
            'endTimestamp': 100000000,
            'liveBackoffDuration': 60,
            'presentationWindowDuration': 1200000000,
            'startTimestamp': 40000000,
            'timescale': 10000000,
            'tracks': '@' + get_test_data_file('filterTracks.json')
        })
    
>       self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}')

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:32: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
               _ 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7f040c26d9d0>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:11
Failed test_ams_account_filter_list_and_delete self = <azure.cli.testsdk.base.ExecutionResult object at 0x7f040c7e1d50>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7f040face390>
command = 'ams account create -n ams000003 -g clitest.rg000001 --storage-account clitest000002 -l southcentralus'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.11/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_filter_scenarios.AmsAccountFilterTests testMethod=test_ams_account_filter_list_and_delete>
storage_account_for_list_and_delete = 'clitest000002'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_list_and_delete')
    def test_ams_account_filter_list_and_delete(self, storage_account_for_list_and_delete):
        amsname = self.create_random_name(prefix='ams', length=12)
        filter_name_1 = self.create_random_name(prefix='filter', length=12)
        filter_name_2 = self.create_random_name(prefix='filter', length=13)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_list_and_delete,
            'location': 'southcentralus',
            'filterName1': filter_name_1,
            'filterName2': filter_name_2,
            'bitrate1': 420,
            'bitrate2': 1000,
            'endTimestamp': 100000000,
            'liveBackoffDuration': 60,
            'presentationWindowDuration': 1200000000,
            'startTimestamp': 40000000,
            'timescale': 10000000,
            'tracks': '@' + get_test_data_file('filterTracks.json')
        })
    
>       self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}')

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:102: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
               _ 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7f040c2725d0>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:78
Failed test_ams_account_filter_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:126
Failed test_ams_add_user_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_identity_scenarios.py:37
Failed test_ams_create_system_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_identity_scenarios.py:9
Failed test_ams_check_name The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:92
Failed test_ams_create_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:9
Failed test_ams_storage_add_remove The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:61
Failed test_ams_sync_storage_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:40
Failed test_ams_asset_filter_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:13
Failed test_ams_asset_filter_list_and_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:142
Failed test_ams_asset_filter_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:73
Failed test_ams_asset_filter_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:203
Failed test_ams_asset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:10
Failed test_ams_asset_get_encryption_key The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:119
Failed test_ams_asset_get_sas_urls The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:82
Failed test_ams_asset_list_streaming_locators The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:152
Failed test_ams_asset_track_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:14
Failed test_ams_asset_track_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:183
Failed test_ams_asset_track_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:126
Failed test_ams_asset_track_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:68
Failed test_ams_asset_track_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:248
Failed test_content_key_policy_create_basic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:302
Failed test_content_key_policy_create_with_fairplay The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:168
Failed test_content_key_policy_create_with_fairplay_offline The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:201
Failed test_content_key_policy_create_with_playready_fail The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:15
Failed test_content_key_policy_create_with_playready_success The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:37
Failed test_content_key_policy_create_with_token The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:238
Failed test_content_key_policy_create_with_widevine The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:277
Failed test_content_key_policy_delete_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:399
Failed test_content_key_policy_show_basic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:332
Failed test_content_key_policy_show_with_secrets The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:364
Failed test_content_key_policy_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:114
Failed test_ams_job The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_job_scenarios.py:13
Failed test_live_event_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:13
Failed test_live_event_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:270
Failed test_live_event_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:236
Failed test_live_event_reset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:310
Failed test_live_event_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:381
Failed test_live_event_standby The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:111
Failed test_live_event_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:75
Failed test_live_event_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:150
Failed test_live_event_stop_and_remove_outputs The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:179
Failed test_live_event_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:345
Failed test_live_output_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:10
Failed test_live_output_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:141
Failed test_live_output_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:58
Failed test_live_output_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:94
Failed test_ams_sp_create_reset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_sp_scenarios.py:12
Failed test_ams_streaming_endpoint_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:180
Failed test_ams_streaming_endpoint_create_with_akamai The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:54
Failed test_ams_streaming_endpoint_create_with_akamai_without_ips The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:14
Failed test_ams_streaming_endpoint_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:263
Failed test_ams_streaming_endpoint_get_skus The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:456
Failed test_ams_streaming_endpoint_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:434
Failed test_ams_streaming_endpoint_scale The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:298
Failed test_ams_streaming_endpoint_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:217
Failed test_ams_streaming_endpoint_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:334
Failed test_ams_streaming_endpoint_start_async The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:356
Failed test_ams_streaming_endpoint_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:410
Failed test_ams_streaming_endpoint_stop_async The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:382
Failed test_ams_streaming_locator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:13
Failed test_ams_streaming_locator_list_content_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:226
Failed test_ams_streaming_locator_with_content_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:150
Failed test_ams_streaming_locator_with_filters The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:78
Failed test_ams_streaming_policy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:12
Failed test_ams_streaming_policy_cbcs The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:258
Failed test_ams_streaming_policy_cbcs_default_drm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:293
Failed test_ams_streaming_policy_cenc The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:83
Failed test_ams_streaming_policy_cenc_default_drm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:142
Failed test_ams_streaming_policy_cenc_disable_widevine The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:200
Failed test_ams_streaming_policy_envelope The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:50
Failed test_ams_transform The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:13
Failed test_ams_transform_create_custom_preset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:104
Failed test_ams_transform_create_custom_preset_invalid The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:78
Failed test_ams_transform_output_add The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:134
❌3.9
Type Test Case Error Message Line
Failed test_ams_encryption_set_show self = <azure.cli.testsdk.base.ExecutionResult object at 0x7fd1fb0a1e20>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7fd2025147f0>
command = 'ams account create -n ams000004 -g clitest.rg000001 --storage-account clitest000002 -l centralus --mi-system-assigned --default-action Allow'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.9/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_encryption_scenarios.AmsEncryptionTests testMethod=test_ams_encryption_set_show>
resource_group = 'clitest.rg000001'
storage_account_for_create = 'clitest000002', key_vault = 'clitest000003'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_create')
    @KeyVaultPreparer(location='centralus', additional_params='--enable-purge-protection')
    def test_ams_encryption_set_show(self, resource_group, storage_account_for_create, key_vault):
        amsname = self.create_random_name(prefix='ams', length=12)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_create,
            'location': 'centralus',
            'keySource': 'CustomerKey',
            'keyVault': key_vault,
            'keyName': self.create_random_name(prefix='ams', length=12),
            'identityPermissions': "get unwrapkey wrapkey",
        })
    
>       account_result = self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location} --mi-system-assigned --default-action Allow', checks=[
            self.check('name', '{amsname}'),
            self.check('location', 'Central US')
        ])

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py:26: 
 
                                       
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.9/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.9/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.9/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fd1fae08760>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py:9
Failed test_ams_account_filter_create_and_show self = <azure.cli.testsdk.base.ExecutionResult object at 0x7fd200c8ef40>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7fd2024df040>
command = 'ams account create -n ams000003 -g clitest.rg000001 --storage-account clitest000002 -l northcentralus'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.9/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_filter_scenarios.AmsAccountFilterTests testMethod=test_ams_account_filter_create_and_show>
storage_account_for_create_and_show = 'clitest000002'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_create_and_show')
    def test_ams_account_filter_create_and_show(self, storage_account_for_create_and_show):
        amsname = self.create_random_name(prefix='ams', length=12)
        filter_name = self.create_random_name(prefix='filter', length=12)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_create_and_show,
            'location': 'northcentralus',
            'filterName': filter_name,
            'firstQuality': 420,
            'endTimestamp': 100000000,
            'liveBackoffDuration': 60,
            'presentationWindowDuration': 1200000000,
            'startTimestamp': 40000000,
            'timescale': 10000000,
            'tracks': '@' + get_test_data_file('filterTracks.json')
        })
    
>       self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}')

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:32: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.9/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.9/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.9/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
               _ 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fd1fadd3190>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:11
Failed test_ams_account_filter_list_and_delete self = <azure.cli.testsdk.base.ExecutionResult object at 0x7fd20324a070>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7fd2024f1d90>
command = 'ams account create -n ams000003 -g clitest.rg000001 --storage-account clitest000002 -l southcentralus'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.9/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.ams.tests.latest.test_ams_account_filter_scenarios.AmsAccountFilterTests testMethod=test_ams_account_filter_list_and_delete>
storage_account_for_list_and_delete = 'clitest000002'

    @ResourceGroupPreparer()
    @StorageAccountPreparer(parameter_name='storage_account_for_list_and_delete')
    def test_ams_account_filter_list_and_delete(self, storage_account_for_list_and_delete):
        amsname = self.create_random_name(prefix='ams', length=12)
        filter_name_1 = self.create_random_name(prefix='filter', length=12)
        filter_name_2 = self.create_random_name(prefix='filter', length=13)
    
        self.kwargs.update({
            'amsname': amsname,
            'storageAccount': storage_account_for_list_and_delete,
            'location': 'southcentralus',
            'filterName1': filter_name_1,
            'filterName2': filter_name_2,
            'bitrate1': 420,
            'bitrate2': 1000,
            'endTimestamp': 100000000,
            'liveBackoffDuration': 60,
            'presentationWindowDuration': 1200000000,
            'startTimestamp': 40000000,
            'timescale': 10000000,
            'tracks': '@' + get_test_data_file('filterTracks.json')
        })
    
>       self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}')

src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:102: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.9/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:725: in run_job
    return cmd_copy.exception_handler(ex)
src/azure-cli/azure/cli/command_modules/ams/exception_handler.py:16: in ams_exception_handler
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:30: in create_mediaservice
    return create_or_update_mediaservice(client, resource_group_name, account_name, [storage_account_primary],
src/azure-cli/azure/cli/command_modules/ams/operations/account.py:134: in create_or_update_mediaservice
    return client.create_or_update(resource_group_name, account_name, media_service)
env/lib/python3.9/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.9/site-packages/azure/mgmt/media/operations/mediaservices_operations.py:531: in create_or_update
    pipeline_response = self.client.pipeline.run(request, stream=False, **kwargs)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.9/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
               _ 

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fd1fadda4c0>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:78
Failed test_ams_account_filter_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_filter_scenarios.py:126
Failed test_ams_add_user_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_identity_scenarios.py:37
Failed test_ams_create_system_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_identity_scenarios.py:9
Failed test_ams_check_name The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:92
Failed test_ams_create_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:9
Failed test_ams_storage_add_remove The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:61
Failed test_ams_sync_storage_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_account_scenarios.py:40
Failed test_ams_asset_filter_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:13
Failed test_ams_asset_filter_list_and_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:142
Failed test_ams_asset_filter_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:73
Failed test_ams_asset_filter_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_filter_scenarios.py:203
Failed test_ams_asset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:10
Failed test_ams_asset_get_encryption_key The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:119
Failed test_ams_asset_get_sas_urls The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:82
Failed test_ams_asset_list_streaming_locators The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_scenarios.py:152
Failed test_ams_asset_track_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:14
Failed test_ams_asset_track_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:183
Failed test_ams_asset_track_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:126
Failed test_ams_asset_track_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:68
Failed test_ams_asset_track_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_asset_track_scenarios.py:248
Failed test_content_key_policy_create_basic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:302
Failed test_content_key_policy_create_with_fairplay The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:168
Failed test_content_key_policy_create_with_fairplay_offline The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:201
Failed test_content_key_policy_create_with_playready_fail The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:15
Failed test_content_key_policy_create_with_playready_success The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:37
Failed test_content_key_policy_create_with_token The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:238
Failed test_content_key_policy_create_with_widevine The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:277
Failed test_content_key_policy_delete_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:399
Failed test_content_key_policy_show_basic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:332
Failed test_content_key_policy_show_with_secrets The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:364
Failed test_content_key_policy_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_content_key_policy_scenarios.py:114
Failed test_ams_job The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_job_scenarios.py:13
Failed test_live_event_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:13
Failed test_live_event_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:270
Failed test_live_event_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:236
Failed test_live_event_reset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:310
Failed test_live_event_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:381
Failed test_live_event_standby The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:111
Failed test_live_event_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:75
Failed test_live_event_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:150
Failed test_live_event_stop_and_remove_outputs The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:179
Failed test_live_event_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_event_scenarios.py:345
Failed test_live_output_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:10
Failed test_live_output_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:141
Failed test_live_output_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:58
Failed test_live_output_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_live_output_scenarios.py:94
Failed test_ams_sp_create_reset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_sp_scenarios.py:12
Failed test_ams_streaming_endpoint_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:180
Failed test_ams_streaming_endpoint_create_with_akamai The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:54
Failed test_ams_streaming_endpoint_create_with_akamai_without_ips The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:14
Failed test_ams_streaming_endpoint_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:263
Failed test_ams_streaming_endpoint_get_skus The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:456
Failed test_ams_streaming_endpoint_list The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:434
Failed test_ams_streaming_endpoint_scale The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:298
Failed test_ams_streaming_endpoint_show The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:217
Failed test_ams_streaming_endpoint_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:334
Failed test_ams_streaming_endpoint_start_async The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:356
Failed test_ams_streaming_endpoint_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:410
Failed test_ams_streaming_endpoint_stop_async The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_endpoint_scenarios.py:382
Failed test_ams_streaming_locator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:13
Failed test_ams_streaming_locator_list_content_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:226
Failed test_ams_streaming_locator_with_content_keys The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:150
Failed test_ams_streaming_locator_with_filters The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_locator_scenarios.py:78
Failed test_ams_streaming_policy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:12
Failed test_ams_streaming_policy_cbcs The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:258
Failed test_ams_streaming_policy_cbcs_default_drm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:293
Failed test_ams_streaming_policy_cenc The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:83
Failed test_ams_streaming_policy_cenc_default_drm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:142
Failed test_ams_streaming_policy_cenc_disable_widevine The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:200
Failed test_ams_streaming_policy_envelope The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_streaming_policy_scenarios.py:50
Failed test_ams_transform The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:13
Failed test_ams_transform_create_custom_preset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:104
Failed test_ams_transform_create_custom_preset_invalid The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:78
Failed test_ams_transform_output_add The error message is too long, please check the pipeline log for details. azure/cli/command_modules/ams/tests/latest/test_ams_transform_scenarios.py:134
🔄apim
🔄latest
🔄3.11
🔄3.9
🔄appconfig
🔄latest
🔄3.11
🔄3.9
🔄appservice
🔄latest
🔄3.11
🔄3.9
🔄aro
🔄latest
🔄3.11
🔄3.9
🔄backup
🔄latest
🔄3.11
🔄3.9
🔄batch
🔄latest
🔄3.11
🔄3.9
❌batchai
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_batchai_auto_scale_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:149
Failed test_batchai_cluster_with_auto_storage The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:283
Failed test_batchai_cluster_with_file_systems The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:211
Failed test_batchai_cluster_with_setup_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:305
Failed test_batchai_config_less_cluster_with_file_systems The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:249
Failed test_batchai_job_level_mounting_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:328
Failed test_batchai_manual_scale_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:28
Failed test_batchai_usages The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:413
❌3.9
Type Test Case Error Message Line
Failed test_batchai_auto_scale_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:149
Failed test_batchai_cluster_with_auto_storage The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:283
Failed test_batchai_cluster_with_file_systems The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:211
Failed test_batchai_cluster_with_setup_command The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:305
Failed test_batchai_config_less_cluster_with_file_systems The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:249
Failed test_batchai_job_level_mounting_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:328
Failed test_batchai_manual_scale_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:28
Failed test_batchai_usages The error message is too long, please check the pipeline log for details. azure/cli/command_modules/batchai/tests/latest/test_batchai_scenario.py:413
🔄billing
🔄latest
🔄3.11
🔄3.9
🔄botservice
🔄latest
🔄3.11
🔄3.9
❌cdn
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_afd_custom_domain_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_custom_domain_scenarios.py:11
Failed test_afd_endpoint_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_endpoint_scenarios.py:10
Failed test_afd_endpoint_purge The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_endpoint_scenarios.py:55
Failed test_afd_log_analytic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_log_analytic_scenarios.py:11
Failed test_afd_waf_log_analytic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_log_analytic_scenarios.py:50
Failed test_afd_origin_group_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_origin_group_scenarios.py:10
Failed test_afd_origin_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_origin_scenarios.py:10
Failed test_afd_profile_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_profile_scenarios.py:10
Failed test_afd_profile_log_scrubbing The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_profile_scenarios.py:87
Failed test_afd_route_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_route_scenarios.py:11
Failed test_afd_rule_actions The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:481
Failed test_afd_rule_complex_condition_creation The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:302
Failed test_afd_rule_creation_invalid_match_values The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:439
Failed test_afd_rule_creation_invalid_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:383
Failed test_afd_rule_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:42
Failed test_rule_set_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:16
Failed test_afd_secret_latest_version_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_secret_scenarios.py:63
Failed test_afd_secret_specific_version_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_secret_scenarios.py:13
Failed test_afd_security_policy_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_security_policy_scenarios.py:12
Failed test_classic_cdn_migration_abort The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:66
Failed test_classic_cdn_migration_commit The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:11
Failed test_classic_cdn_migration_with_endpoint The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:56
Failed test_cdn_custom_domain_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:47
Failed test_cdn_custom_domain_errors The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:16
Failed test_cdn_custom_domain_https_msft The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:132
Failed test_cdn_custom_domain_https_verizon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:94
Failed test_endpoint_compression The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:81
Failed test_endpoint_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:12
Failed test_endpoint_different_profiles The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:219
Failed test_endpoint_load_and_purge The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:204
Failed test_endpoint_start_and_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:187
Failed test_private_link The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:150
Failed test_rule_engine_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:245
Failed test_verizon_delivery_rule The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:373
Failed test_edge_node_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_nodes_scenarios.py:8
Failed test_microsoft_sku_origingroup_override The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_origin_scenarios.py:254
Failed test_origin_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_origin_scenarios.py:11
Failed test_cdn_profile_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:11
Failed test_cdn_profile_delete_not_found The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:32
Failed test_cdn_microsoft_standard_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:41
❌3.9
Type Test Case Error Message Line
Failed test_afd_custom_domain_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_custom_domain_scenarios.py:11
Failed test_afd_endpoint_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_endpoint_scenarios.py:10
Failed test_afd_endpoint_purge The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_endpoint_scenarios.py:55
Failed test_afd_log_analytic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_log_analytic_scenarios.py:11
Failed test_afd_waf_log_analytic The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_log_analytic_scenarios.py:50
Failed test_afd_origin_group_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_origin_group_scenarios.py:10
Failed test_afd_origin_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_origin_scenarios.py:10
Failed test_afd_profile_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_profile_scenarios.py:10
Failed test_afd_profile_log_scrubbing The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_profile_scenarios.py:87
Failed test_afd_route_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_route_scenarios.py:11
Failed test_afd_rule_actions The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:481
Failed test_afd_rule_complex_condition_creation The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:302
Failed test_afd_rule_creation_invalid_match_values The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:439
Failed test_afd_rule_creation_invalid_operator The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:383
Failed test_afd_rule_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:42
Failed test_rule_set_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_rule_scenarios.py:16
Failed test_afd_secret_latest_version_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_secret_scenarios.py:63
Failed test_afd_secret_specific_version_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_secret_scenarios.py:13
Failed test_afd_security_policy_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_afd_security_policy_scenarios.py:12
Failed test_classic_cdn_migration_abort The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:66
Failed test_classic_cdn_migration_commit The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:11
Failed test_classic_cdn_migration_with_endpoint The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_classic_cdn_to_afd.py:56
Failed test_cdn_custom_domain_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:47
Failed test_cdn_custom_domain_errors The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:16
Failed test_cdn_custom_domain_https_msft The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:132
Failed test_cdn_custom_domain_https_verizon The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_custom_domain_scenarios.py:94
Failed test_endpoint_compression The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:81
Failed test_endpoint_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:12
Failed test_endpoint_different_profiles The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:219
Failed test_endpoint_load_and_purge The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:204
Failed test_endpoint_start_and_stop The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:187
Failed test_private_link The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:150
Failed test_rule_engine_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:245
Failed test_verizon_delivery_rule The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_endpoint_scenarios.py:373
Failed test_edge_node_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_nodes_scenarios.py:8
Failed test_microsoft_sku_origingroup_override The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_origin_scenarios.py:254
Failed test_origin_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_origin_scenarios.py:11
Failed test_cdn_profile_crud The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:11
Failed test_cdn_profile_delete_not_found The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:32
Failed test_cdn_microsoft_standard_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/cdn/tests/latest/test_profile_scenarios.py:41
🔄cloud
🔄latest
🔄3.11
🔄3.9
🔄cognitiveservices
🔄latest
🔄3.11
🔄3.9
❌compute_recommender
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_spot_placement_recommender_generate The error message is too long, please check the pipeline log for details. azure/cli/command_modules/compute_recommender/tests/latest/test_compute_recommender.py:11
❌3.9
Type Test Case Error Message Line
Failed test_spot_placement_recommender_generate The error message is too long, please check the pipeline log for details. azure/cli/command_modules/compute_recommender/tests/latest/test_compute_recommender.py:11
️✔️config
️✔️latest
️✔️3.11
️✔️3.9
🔄configure
🔄latest
🔄3.11
🔄3.9
🔄consumption
🔄latest
🔄3.11
🔄3.9
🔄container
🔄latest
🔄3.11
🔄3.9
🔄containerapp
🔄latest
🔄3.11
🔄3.9
❌core
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_get_login_credentials The error message is too long, please check the pipeline log for details. azure/cli/core/tests/test_profile.py:931
Failed test_get_login_credentials_aux_subscriptions The error message is too long, please check the pipeline log for details. azure/cli/core/tests/test_profile.py:955
Failed test_get_login_credentials_aux_tenants The error message is too long, please check the pipeline log for details. azure/cli/core/tests/test_profile.py:984
Failed test_get_raw_token The error message is too long, please check the pipeline log for details. azure/cli/core/tests/test_profile.py:1115
Failed test_get_raw_token_for_sp The error message is too long, please check the pipeline log for details. azure/cli/core/tests/test_profile.py:1162
🔄3.9
🔄cosmosdb
🔄latest
🔄3.11
🔄3.9
🔄databoxedge
🔄latest
🔄3.11
🔄3.9
🔄dla
🔄latest
🔄3.11
🔄3.9
❌dls
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_dls_file_access_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:20
Failed test_dls_file_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:139
Failed test_dls_account_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:302
❌3.9
Type Test Case Error Message Line
Failed test_dls_file_access_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:20
Failed test_dls_file_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:139
Failed test_dls_account_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/dls/tests/latest/test_dls_commands.py:302
🔄dms
🔄latest
🔄3.11
🔄3.9
🔄eventgrid
🔄latest
🔄3.11
🔄3.9
🔄eventhubs
🔄latest
🔄3.11
🔄3.9
🔄feedback
🔄latest
️✔️3.11
🔄3.9
🔄find
🔄latest
🔄3.11
🔄3.9
🔄hdinsight
🔄latest
🔄3.11
🔄3.9
❌identity
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_federated_identity_credential The error message is too long, please check the pipeline log for details. azure/cli/command_modules/identity/tests/latest/test_identity.py:31
Failed test_identity_management The error message is too long, please check the pipeline log for details. azure/cli/command_modules/identity/tests/latest/test_identity.py:13
🔄3.9
❌iot
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_certificate_lifecycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_certificate_commands.py:31
Failed test_hub_file_upload The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_commands.py:701
Failed test_hub_wait The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_commands.py:842
Failed test_identity_hub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_commands.py:441
Failed test_iot_hub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_commands.py:24
Failed test_dps_certificate_lifecycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py:133
Failed test_dps_lifecycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py:24
Failed test_dps_linked_hub_lifecycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py:230
🔄3.9
🔄keyvault
🔄latest
🔄3.11
🔄3.9
❌kusto
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_kusto_cluster_life_cycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py:14
Failed test_kusto_cluster_stop_start The error message is too long, please check the pipeline log for details. azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py:54
Failed test_kusto_database_life_cycle The error message is too long, please check the pipeline log for details. azure/cli/command_modules/kusto/tests/latest/test_kusto_commands.py:89
🔄3.9
❌lab
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_lab_custom_image The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:98
Failed test_lab_retrieve_commands The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:126
Failed test_lab_secret The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:156
Failed test_lab_vm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:18
❌3.9
Type Test Case Error Message Line
Failed test_lab_custom_image The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:98
Failed test_lab_retrieve_commands The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:126
Failed test_lab_secret The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:156
Failed test_lab_vm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/lab/tests/latest/test_lab.py:18
🔄managedservices
🔄latest
🔄3.11
🔄3.9
🔄maps
🔄latest
🔄3.11
🔄3.9
🔄marketplaceordering
🔄latest
🔄3.11
🔄3.9
🔄monitor
🔄latest
🔄3.11
🔄3.9
🔄mysql
🔄latest
🔄3.11
🔄3.9
🔄netappfiles
🔄latest
🔄3.11
🔄3.9
🔄network
🔄latest
🔄3.11
🔄3.9
🔄policyinsights
🔄latest
🔄3.11
🔄3.9
🔄privatedns
🔄latest
🔄3.11
🔄3.9
🔄profile
🔄latest
🔄3.11
🔄3.9
🔄rdbms
🔄latest
🔄3.11
🔄3.9
🔄redis
🔄latest
🔄3.11
🔄3.9
🔄relay
🔄latest
🔄3.11
🔄3.9
🔄resource
🔄latest
🔄3.11
🔄3.9
❌role
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_app_create_idempotent The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:332
Failed test_app_credential The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:385
Failed test_app_federated_credential The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:625
Failed test_app_owner The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:389
Failed test_app_permission The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:408
Failed test_app_permission_grant The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:564
Failed test_app_resolution The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:357
Failed test_app_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:202
Failed test_app_show_exit_code The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:380
Failed test_service_principal_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:662
Failed test_sp_credential The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:725
Failed test_sp_owner The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:711
Failed test_sp_show_exit_code The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:706
Failed test_user_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:736
Failed test_group_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:807
Failed test_special_characters_in_query The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:951
Failed test_special_characters_in_upn The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_graph.py:978
Failed test_create_for_rbac_argument_error The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:174
Failed test_create_for_rbac_create_cert The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:43
Failed test_create_for_rbac_create_cert_keyvault The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:70
Failed test_create_for_rbac_password The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:35
Failed test_create_for_rbac_password_with_assignment The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:147
Failed test_create_for_rbac_use_cert_keyvault The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:100
Failed test_role_definition_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:200
Failed test_role_assignment_audits The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:607
Failed test_role_assignment_create_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:480
Failed test_role_assignment_create_using_principal_type The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:386
Failed test_role_assignment_scenario The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:263
Failed test_role_assignment_handle_conflicted_assignments The error message is too long, please check the pipeline log for details. azure/cli/command_modules/role/tests/latest/test_role.py:659
🔄3.9
🔄search
🔄latest
🔄3.11
🔄3.9
🔄security
🔄latest
🔄3.11
🔄3.9
🔄servicebus
🔄latest
🔄3.11
🔄3.9
❌serviceconnector
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_kubernetes_cognitive_secret_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:399
Failed test_kubernetes_confluentkafka_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:233
Failed test_kubernetes_keyvault_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:30
Failed test_kubernetes_mysql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:82
Failed test_kubernetes_servicebus_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:186
Failed test_kubernetes_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:136
Failed test_webapp_aiservices_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1897
Failed test_webapp_app_insights_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1479
Failed test_webapp_appconfig_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:28
Failed test_webapp_cognitive_services_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1943
Failed test_webapp_confluentkafka_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1324
Failed test_webapp_cosmoscassandra_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:76
Failed test_webapp_cosmosgremlin_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:124
Failed test_webapp_cosmosmongo_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:173
Failed test_webapp_cosmossql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:220
Failed test_webapp_cosmostable_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:268
Failed test_webapp_eventhub_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:316
Failed test_webapp_keyvault_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:504
Failed test_webapp_mysql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:701
Failed test_webapp_mysqlflexible_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:754
Failed test_webapp_openai_secret_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1799
Failed test_webapp_openai_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1846
Failed test_webapp_postgres_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:809
Failed test_webapp_postgresflexible_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:551
Failed test_webapp_redis_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:605
Failed test_webapp_redisenterprise_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:653
Failed test_webapp_servicebus_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:363
Failed test_webapp_signalr_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:410
Failed test_webapp_sql_connection_string The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:917
Failed test_webapp_sql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:863
Failed test_webapp_storage_blob_null_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1736
Failed test_webapp_storage_blob_system_identity_opt_out_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1679
Failed test_webapp_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:962
Failed test_webapp_storageblob_secret_opt_out_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1533
Failed test_webapp_storageblob_secret_opt_out_public_network The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1529
Failed test_webapp_storageblob_secret_opt_out_public_network_and_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1525
Failed test_webapp_storagefile_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1230
Failed test_webapp_storagequeue_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1183
Failed test_webapp_storagetable_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1277
Failed test_webapp_webpubsub_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:457
Failed test_webappslot_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1431
❌3.9
Type Test Case Error Message Line
Failed test_kubernetes_cognitive_secret_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:399
Failed test_kubernetes_confluentkafka_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:233
Failed test_kubernetes_keyvault_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:30
Failed test_kubernetes_mysql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:82
Failed test_kubernetes_servicebus_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:186
Failed test_kubernetes_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_kubernetes_connection_scenario.py:136
Failed test_webapp_aiservices_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1897
Failed test_webapp_app_insights_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1479
Failed test_webapp_appconfig_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:28
Failed test_webapp_cognitive_services_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1943
Failed test_webapp_confluentkafka_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1324
Failed test_webapp_cosmoscassandra_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:76
Failed test_webapp_cosmosgremlin_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:124
Failed test_webapp_cosmosmongo_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:173
Failed test_webapp_cosmossql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:220
Failed test_webapp_cosmostable_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:268
Failed test_webapp_eventhub_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:316
Failed test_webapp_keyvault_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:504
Failed test_webapp_mysql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:701
Failed test_webapp_mysqlflexible_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:754
Failed test_webapp_openai_secret_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1799
Failed test_webapp_openai_system_identity_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1846
Failed test_webapp_postgres_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:809
Failed test_webapp_postgresflexible_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:551
Failed test_webapp_redis_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:605
Failed test_webapp_redisenterprise_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:653
Failed test_webapp_servicebus_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:363
Failed test_webapp_signalr_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:410
Failed test_webapp_sql_connection_string The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:917
Failed test_webapp_sql_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:863
Failed test_webapp_storage_blob_null_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1736
Failed test_webapp_storage_blob_system_identity_opt_out_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1679
Failed test_webapp_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:962
Failed test_webapp_storageblob_secret_opt_out_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1533
Failed test_webapp_storageblob_secret_opt_out_public_network The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1529
Failed test_webapp_storageblob_secret_opt_out_public_network_and_config The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1525
Failed test_webapp_storagefile_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1230
Failed test_webapp_storagequeue_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1183
Failed test_webapp_storagetable_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1277
Failed test_webapp_webpubsub_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:457
Failed test_webappslot_storageblob_e2e The error message is too long, please check the pipeline log for details. azure/cli/command_modules/serviceconnector/tests/latest/test_webpp_connection_scenario.py:1431
🔄servicefabric
🔄latest
🔄3.11
🔄3.9
❌signalr
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_signalr_commands The error message is too long, please check the pipeline log for details. azure/cli/command_modules/signalr/tests/latest/test_signalr_commands.py:11
Failed test_signalr_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/signalr/tests/latest/test_signalr_identity.py:11
Failed test_signalr_private_endpoint_2 The error message is too long, please check the pipeline log for details. azure/cli/command_modules/signalr/tests/latest/test_signalr_private_endpoint.py:11
Failed test_signalr_replica The error message is too long, please check the pipeline log for details. azure/cli/command_modules/signalr/tests/latest/test_signalr_replica.py:9
Failed test_signalr_upstream The error message is too long, please check the pipeline log for details. azure/cli/command_modules/signalr/tests/latest/test_signalr_upstream.py:11
🔄3.9
❌sql
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_sql_refresh_external_governance_status self = <azure.cli.testsdk.base.ExecutionResult object at 0x7fddfe051890>
cli_ctx = <azure.cli.core.mock.DummyCli object at 0x7fddfe0dd990>
command = 'sql server create -l eastus2euap -g clitest.rg000001 -n clitestserver000002 -u admin123 -p SecretPassword123'
expect_failure = False

    def in_process_execute(self, cli_ctx, command, expect_failure=False):
        from io import StringIO
        from vcr.errors import CannotOverwriteExistingCassetteException
    
        if command.startswith('az '):
            command = command[3:]
    
        stdout_buf = StringIO()
        logging_buf = StringIO()
        try:
            # issue: stderr cannot be redirect in this form, as a result some failure information
            # is lost when command fails.
>           self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0

src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: 
                                        
env/lib/python3.11/site-packages/knack/cli.py:245: in invoke
    exit_code = self.exception_handler(ex)
src/azure-cli-core/azure/cli/core/init.py:129: in exception_handler
    return handle_exception(ex)
                                        

ex = AttributeError("'UserCredentialMock' object has no attribute 'acquire_token'")
args = (), kwargs = {}

    def handle_main_exception(ex, *args, **kwargs):  # pylint: disable=unused-argument
        if isinstance(ex, CannotOverwriteExistingCassetteException):
            # This exception usually caused by a no match HTTP request. This is a product error
            # that is caused by change of SDK invocation.
            raise ex
    
>       raise CliExecutionError(ex)
E       azure.cli.testsdk.exceptions.CliExecutionError: The CLI throws exception AttributeError during execution and fails the command.

src/azure-cli-testsdk/azure/cli/testsdk/patches.py:35: CliExecutionError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.sql.tests.latest.test_sql_commands.SqlServerPreparer object at 0x7fde0481e890>
name = 'clitestserver000002'
kwargs = {'resource_group': 'clitest.rg000001', 'resource_group_location': 'eastus2euap'}
group = 'clitest.rg000001'
template = 'az sql server create -l {} -g {} -n {} -u {} -p {}'

    def create_resource(self, name, **kwargs):
        group = self.get_resource_group(**kwargs)
        template = 'az sql server create -l {} -g {} -n {} -u {} -p {}'
>       execute(DummyCli(), template.format(self.location, group, name, self.admin_user, self.admin_password))

src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:61: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:314: in in_process_execute
    raise ex.exception
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:666: in execute
    raise ex
src/azure-cli-core/azure/cli/core/commands/init.py:733: in run_jobs_serially
    results.append(self.run_job(expanded_arg, cmd_copy))
src/azure-cli-core/azure/cli/core/commands/init.py:703: in run_job
    result = cmd_copy(params)
src/azure-cli-core/azure/cli/core/commands/init.py:336: in call
    return self.handler(*args, **kwargs)
src/azure-cli-core/azure/cli/core/commands/command_operation.py:121: in handler
    return op(**command_args)
src/azure-cli/azure/cli/command_modules/sql/custom.py:4126: in server_create
    return sdk_no_wait(no_wait, client.begin_create_or_update,
src/azure-cli-core/azure/cli/core/util.py:710: in sdk_no_wait
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/sql/operations/servers_operations.py:791: in begin_create_or_update
    raw_result = self.create_or_update_initial(
env/lib/python3.11/site-packages/azure/mgmt/sql/operations/servers_operations.py:687: in create_or_update_initial
    pipeline_response: PipelineResponse = self.client.pipeline.run(  # pylint: disable=protected-access
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
               

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fddfdc239d0>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = _normalize_scopes(scopes)
>       msal_token = self._credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError
azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:176
Failed test_sql_server_mgmt self = <azure.cli.core.commands.AzCliCommandInvoker object at 0x7fddfe1fca90>
parsed_ns = Namespace(log_verbosity_verbose=False, log_verbosity_debug=False, log_verbosity_only_show_errors=False, output_for...atter'>, conflict_handler='error', add_help=True), cmd=<azure.cli.core.commands.AzCliCommand object at 0x7fddfe002a10>)

    def validation(self, parsed_ns):
        try:
            cmd_validator = getattr(parsed_ns, 'command_validator', None)
            if cmd_validator:
                self.validate_cmd_level(parsed_ns, cmd_validator)
            else:
>               self.validate_arg_level(parsed_ns)

env/lib/python3.11/site-packages/knack/invocation.py:113: 
 
 
 
 
 
 
 
                                 
src/azure-cli-core/azure/cli/core/commands/init.py:921: in validate_arg_level
    validator(**self.build_kwargs(validator, ns))
src/azure-cli-core/azure/cli/core/commands/validators.py:81: in get_default_location_from_resource_group
    rg = resource_client.resource_groups.get(namespace.resource_group_name)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/resource/resources/v2022_09_01/operations/operations.py:10748: in get
    pipeline_response: PipelineResponse = self.client.pipeline.run(  # pylint: disable=protected-access
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                      

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fddfd885410>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = normalize_scopes(scopes)
>       msal_token = self.credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.sql.tests.latest.test_sql_commands.SqlServerMgmtScenarioTest testMethod=test_sql_server_mgmt>
resource_group_1 = 'clitest.rg000001', resource_group_2 = 'clitest.rg000002'
resource_group_location = 'westeurope'

    @ResourceGroupPreparer(parameter_name='resource_group_1', location='westeurope')
    @ResourceGroupPreparer(parameter_name='resource_group_2', location='westeurope')
    def test_sql_server_mgmt(self, resource_group_1, resource_group_2, resource_group_location):
        server_name_1 = self.create_random_name(server_name_prefix, server_name_max_length)
        server_name_2 = self.create_random_name(server_name_prefix, server_name_max_length)
        server_name_3 = self.create_random_name(server_name_prefix, server_name_max_length)
    
        admin_login = 'admin123'
        admin_passwords = ['SecretPassword123', 'SecretPassword456', 'SecretPassword789']
        federated_client_id_1 = '748eaea0-6dbc-4be9-a50b-6a2d3dad00d4'
        federated_client_id_2 = '17deee33-9da7-40ce-a33c-8a96f2f8f07d'
        federated_client_id_3 = '00000000-0000-0000-0000-000000000000'
    
        # test create sql server with minimal required parameters
>       server_1 = self.cmd('sql server create -g {} --name {} '
                            '--admin-user {} --admin-password {}'
                            .format(resource_group_1, server_name_1, admin_login, admin_passwords[0]),
                            checks=[
                                JMESPathCheck('name', server_name_1),
                                JMESPathCheck('location', resource_group_location),
                                JMESPathCheck('resourceGroup', resource_group_1),
                                JMESPathCheck('administratorLogin', admin_login),
                                JMESPathCheck('identity', None)]).get_output_in_json()

src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:202: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: in in_process_execute
    self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0
env/lib/python3.11/site-packages/knack/cli.py:250: in invoke
    raise ex
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:654: in execute
    self.validation(expanded_arg)
env/lib/python3.11/site-packages/knack/invocation.py:118: in validation
    getattr(parsed_ns, 'parser', self.parser).validation_error(str(err))
src/azure-cli-core/azure/cli/core/parser.py:150: in validation_error
    self.exit(2)
 
 
 
 
 
                                   

self = AzCliCommandParser(prog='az sql server create', usage=None, description='Creates a server.', formatter_class=<class 'argparse.HelpFormatter'>, conflict_handler='error', add_help=True)
status = 2, message = None

    def exit(self, status=0, message=None):
        if message:
            self._print_message(message, _sys.stderr)
>       _sys.exit(status)
E       SystemExit: 2

/opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/argparse.py:2627: SystemExit
azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:187
Failed test_sql_server_public_network_access_create_mgmt self = <azure.cli.core.commands.AzCliCommandInvoker object at 0x7fddfe1846d0>
parsed_ns = Namespace(log_verbosity_verbose=False, log_verbosity_debug=False, log_verbosity_only_show_errors=False, output_for...atter'>, conflict_handler='error', add_help=True), cmd=<azure.cli.core.commands.AzCliCommand object at 0x7fddfdbf89d0>)

    def validation(self, parsed_ns):
        try:
            cmd_validator = getattr(parsed_ns, 'command_validator', None)
            if cmd_validator:
                self.validate_cmd_level(parsed_ns, cmd_validator)
            else:
>               self.validate_arg_level(parsed_ns)

env/lib/python3.11/site-packages/knack/invocation.py:113: 
 
 
 
 
 
 
 
                                 
src/azure-cli-core/azure/cli/core/commands/init.py:921: in validate_arg_level
    validator(**self.build_kwargs(validator, ns))
src/azure-cli-core/azure/cli/core/commands/validators.py:81: in get_default_location_from_resource_group
    rg = resource_client.resource_groups.get(namespace.resource_group_name)
env/lib/python3.11/site-packages/azure/core/tracing/decorator.py:76: in wrapper_use_tracer
    return func(*args, **kwargs)
env/lib/python3.11/site-packages/azure/mgmt/resource/resources/v2022_09_01/operations/operations.py:10748: in get
    pipeline_response: PipelineResponse = self.client.pipeline.run(  # pylint: disable=protected-access
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:213: in run
    return first_node.send(pipeline_request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/base.py:70: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/mgmt/core/policies/base.py:47: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/redirect.py:181: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/retry.py:467: in send
    response = self.next.send(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:113: in send
    self.on_request(request)
env/lib/python3.11/site-packages/azure/core/pipeline/policies/authentication.py:90: in on_request
    self.token = self.credential.get_token(*self.scopes)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
                      

self = <azure.cli.core.auth.credential_adaptor.CredentialAdaptor object at 0x7fddfda2bd10>
scopes = ('https://management.core.windows.net//.default',),&nbsp;kwargs&nbsp;=&nbsp;{}

    def get_token(self, *scopes, **kwargs):
        """Protocol for Track 2 SDK token acquisition.
    
        :returns: AccessToken
        """
        logger.debug("CredentialAdaptor.get_token: scopes=%r, kwargs=%r", scopes, kwargs)
    
        # SDK azure-keyvault-keys 4.5.0b5 passes tenant_id as kwargs, but we don't support tenant_id for now,
        # so discard it.
        kwargs.pop('tenant_id', None)
    
        scopes = normalize_scopes(scopes)
>       msal_token = self.credential.acquire_token(list(scopes), **kwargs)
E       AttributeError: 'UserCredentialMock' object has no attribute 'acquire_token'

src/azure-cli-core/azure/cli/core/auth/credential_adaptor.py:72: AttributeError

During handling of the above exception, another exception occurred:

self = <azure.cli.command_modules.sql.tests.latest.test_sql_commands.SqlServerMgmtScenarioTest testMethod=test_sql_server_public_network_access_create_mgmt>
resource_group_1 = 'clitest.rg000001', resource_group_location = 'westeurope'

    @ResourceGroupPreparer(parameter_name='resource_group_1', location='westeurope')
    def test_sql_server_public_network_access_create_mgmt(self, resource_group_1, resource_group_location):
        server_name_1 = self.create_random_name(server_name_prefix, server_name_max_length)
        server_name_2 = self.create_random_name(server_name_prefix, server_name_max_length)
        server_name_3 = self.create_random_name(server_name_prefix, server_name_max_length)
        admin_login = 'admin123'
        admin_passwords = ['SecretPassword123', 'SecretPassword456']
    
        # test create sql server with no enable-public-network passed in, verify publicNetworkAccess == Enabled
>       self.cmd('sql server create -g {} --name {} '
                 '--admin-user {} --admin-password {}'
                 .format(resource_group_1, server_name_1, admin_login, admin_passwords[0]),
                 checks=[
                     JMESPathCheck('name', server_name_1),
                     JMESPathCheck('location', resource_group_location),
                     JMESPathCheck('resourceGroup', resource_group_1),
                     JMESPathCheck('administratorLogin', admin_login),
                     JMESPathCheck('publicNetworkAccess', 'Enabled')])

src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:292: 
 
 
                                      
src/azure-cli-testsdk/azure/cli/testsdk/base.py:176: in cmd
    return execute(self.cli_ctx, command, expect_failure=expect_failure).assert_with_checks(checks)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:251: in init
    self.in_process_execute(cli_ctx, command, expect_failure=expect_failure)
src/azure-cli-testsdk/azure/cli/testsdk/base.py:302: in in_process_execute
    self.exit_code = cli_ctx.invoke(shlex.split(command), out_file=stdout_buf) or 0
env/lib/python3.11/site-packages/knack/cli.py:250: in invoke
    raise ex
env/lib/python3.11/site-packages/knack/cli.py:233: in invoke
    cmd_result = self.invocation.execute(args)
src/azure-cli-core/azure/cli/core/commands/init.py:654: in execute
    self.validation(expanded_arg)
env/lib/python3.11/site-packages/knack/invocation.py:118: in validation
    getattr(parsed_ns, 'parser', self.parser).validation_error(str(err))
src/azure-cli-core/azure/cli/core/parser.py:150: in validation_error
    self.exit(2)
 
 
 
 
 
                                   

self = AzCliCommandParser(prog='az sql server create', usage=None, description='Creates a server.', formatter_class=<class 'argparse.HelpFormatter'>, conflict_handler='error', add_help=True)
status = 2, message = None

    def exit(self, status=0, message=None):
        if message:
            self._print_message(message, _sys.stderr)
>       _sys.exit(status)
E       SystemExit: 2

/opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/argparse.py:2627: SystemExit
azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:282
Failed test_sql_server_public_network_access_update_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:334
Failed test_sql_firewall_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:394
Failed test_sql_ipv6_firewall_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:506
Failed test_sql_outbound_firewall_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:589
Failed test_sql_db_ledger The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:857
Failed test_sql_db_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:628
Failed test_sql_db_preferred_enclave_type The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:938
Failed test_sql_db_read_replica_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:816
Failed test_sql_db_vcore_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:732
Failed test_sql_per_db_cmk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:897
Failed test_sql_db_serverless_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1017
Failed test_sql_db_free_params The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1104
Failed test_sql_db_operation_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1141
Failed test_sql_db_forward_migration_manual_cutover The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1175
Failed test_sql_db_short_term_retention The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1222
Failed test_sql_mi_operation_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1434
Failed test_sql_server_connection_policy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1472
Failed test_aad_admin The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1488
Failed test_aadonly The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1535
Failed test_sql_db_copy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1554
Failed test_sql_db_copy_with_perdb_cmk The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1630
Failed test_sql_db_restore The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1721
Failed test_sql_db_restore_deleted The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1788
Failed test_sql_db_security_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:1861
Failed test_sql_server_security_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2119
Failed test_sql_server_advanced_threat_protection The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2319
Failed test_sql_db_advanced_threat_protection The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2365
Failed test_sql_mi_advanced_threat_protection The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2420
Failed test_sql_midb_advanced_threat_protection The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2472
Failed test_sql_server_ms_support_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2549
Failed test_sql_dw_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2724
Failed test_sql_server_dns_alias_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2833
Failed test_sql_db_replica_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:2956
Failed test_sql_elastic_pools_preferred_enclave_type_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:3626
Failed test_sql_elastic_pools_vcore_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:3424
Failed test_sql_elastic_pool_operation_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:3734
Failed test_sql_capabilities The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:3788
Failed test_sql_db_import_export_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:3946
Failed test_sql_tde The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4165
Failed test_sql_server_identity The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4303
Failed test_sql_vnet_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4356
Failed test_sql_subscription_usages The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4441
Failed test_sql_zone_resilient_copy_hyperscale_database The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4660
Failed test_sql_zone_resilient_database The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4452
Failed test_sql_zone_resilient_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4553
Failed test_sql_zone_resilient_replica_hyperscale_database The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4740
Failed test_sql_zone_resilient_restore_hyperscale_database The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4854
Failed test_sql_db_maintenance The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:4946
Failed test_sql_elastic_pool_maintenance The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5022
Failed test_sql_managed_instance_cmw The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5141
Failed test_sql_managed_instance_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5375
Failed test_sql_managed_instance_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5209
Failed test_sql_mi_scheduledstartstop_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5437
Failed test_sql_mi_startstop_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5412
Failed test_sql_managed_instance_bsr The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5508
Failed test_sql_managed_instance_create_identity_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5551
Failed test_sql_managed_db_short_retention The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:5822
Failed test_sql_managed_db_long_term_retention The error message is too long, please check the pipeline log for details. ../azure-cli-testsdk/azure/cli/testsdk/scenario_tests/decorators.py:29
Failed test_sql_managed_deleted_db_restore The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6025
Failed test_sql_managed_db_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6073
Failed test_sql_midb_cross_subscription_move_copy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6259
Failed test_sql_midb_ledger The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6153
Failed test_sql_midb_move_copy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6191
Failed test_sql_mi_aad_admin The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6331
Failed test_sql_mi_ad_only_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6379
Failed test_sql_failover_group_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6490
Failed test_sql_virtual_cluster_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6659
Failed test_sql_instance_failover_group_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6708
Failed test_sql_server_minimal_tls_version The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:6992
Failed test_sql_mi_failover_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7040
Failed test_sql_ledger The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7136
Failed test_sql_mi_ledger The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7180
Failed test_sql_mi_endpoint_cert_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7220
Failed test_sql_mi_partner_cert_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7292
Failed test_sql_mi_link_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7362
Failed test_sql_mi_dtc_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7462
Failed test_sql_midb_recover The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7501
Failed test_sql_mi_hermes_create The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7597
Failed test_sql_mi_hermes_update The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7650
Failed test_sql_mi_server_configuration_options The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7716
Failed test_sql_mi_refresh_external_governance_status The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sql/tests/latest/test_sql_commands.py:7774
🔄3.9
❌sqlvm
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_sqlvm_create_and_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:364
Failed test_sqlvm_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:180
Failed test_sqlvm_mgmt_assessment The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:114
Failed test_sqlvm_update_license_and_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:463
Failed test_sqlvm_group_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:556
Failed test_sqlvm_aad_auth_negative The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:723
Failed test_sqlvm_add_and_remove The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:661
❌3.9
Type Test Case Error Message Line
Failed test_sqlvm_create_and_delete The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:364
Failed test_sqlvm_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:180
Failed test_sqlvm_mgmt_assessment The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:114
Failed test_sqlvm_update_license_and_sku The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:463
Failed test_sqlvm_group_mgmt The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:556
Failed test_sqlvm_aad_auth_negative The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:723
Failed test_sqlvm_add_and_remove The error message is too long, please check the pipeline log for details. azure/cli/command_modules/sqlvm/tests/latest/test_sqlvm_commands.py:661
🔄storage
🔄latest
🔄3.11
🔄3.9
❌synapse
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_access_control The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2179
Failed test_ad_only_auth The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:3018
Failed test_dataset The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2362
Failed test_integration_runtime The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2712
Failed test_ip_firewall_rules The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1972
Failed test_kusto_attached_database_configuration The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:623
Failed test_kusto_data_connection_event_grid The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:19
Failed test_kusto_data_connection_event_hub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:272
Failed test_kusto_data_connection_iot_hub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:149
Failed test_kusto_database The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:791
Failed test_kusto_database_principal_assignment The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:398
Failed test_kusto_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:883
Failed test_kusto_pool_principal_assignment The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:513
Failed test_kusto_script The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:988
Failed test_link_connection The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:3048
Failed test_linked_service The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2313
Failed test_managed_private_endpoints The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2836
Failed test_managed_virtual_network_workspace The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1144
Failed test_notebook The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2593
Failed test_pipeline The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2413
Failed test_spark_job The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2036
Failed test_spark_job_definition The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2891
Failed test_spark_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1157
Failed test_spark_session_and_statements The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2089
Failed test_sql_aad_admin The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1933
Failed test_sql_pool The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1329
Failed test_sql_pool_audit_policy_logentry_eventhub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1756
Failed test_sql_pool_classification_and_recommendation The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1458
Failed test_sql_pool_tde The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1526
Failed test_sql_pool_threat_policy The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1562
Failed test_sql_ws_audit_policy_logentry_eventhub The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1598
Failed test_sqlscript The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2952
Failed test_trigger The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2477
Failed test_user_assigned_identity_id_workspace The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:3119
Failed test_workspace_package The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:2664
Failed test_workspaces The error message is too long, please check the pipeline log for details. azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py:1104
🔄3.9
🔄telemetry
🔄latest
🔄3.11
🔄3.9
❌util
❌latest
❌3.11
Type Test Case Error Message Line
Failed test_rest_arm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:16
Failed test_rest_microsoft_graph The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:129
Failed test_rest_storage The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:58
Failed test_rest_unicode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:206
❌3.9
Type Test Case Error Message Line
Failed test_rest_arm The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:16
Failed test_rest_microsoft_graph The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:129
Failed test_rest_storage The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:58
Failed test_rest_unicode The error message is too long, please check the pipeline log for details. azure/cli/command_modules/util/tests/latest/test_rest.py:206
🔄vm
🔄latest
🔄3.11
🔄3.9

Copy link

Hi @jiasli,
Since the current milestone time is less than 7 days, this pr will be reviewed in the next milestone.

Copy link

azure-client-tools-bot-prd bot commented Sep 23, 2024

️✔️AzureCLI-BreakingChangeTest
️✔️Non Breaking Changes

@yonzhan
Copy link
Collaborator

yonzhan commented Sep 23, 2024

Core

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Auto-Assign Auto assign by bot Core CLI core infrastructure
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants