1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import unittest
try:
# Attempt to load mock (works on Python 3.3 and above)
from unittest.mock import patch
except ImportError:
# Attempt to load mock (works on Python version below 3.3)
from mock import patch
from knack.util import CLIError
from azext_devops.dev.common.telemetry import (set_tracking_data,
try_send_telemetry_data, vsts_tracking_data)
from azext_devops.dev.common.services import (get_connection,
clear_connection_cache,
resolve_instance,
resolve_instance_project_and_repo,
check_organization_in_azure)
class TestServicesMethods(unittest.TestCase):
_TEST_DEVOPS_ORGANIZATION = 'https://dev.azure.com/AzureDevOpsCliTest'
_TEST_DEVOPS_ORGANIZATION2 = 'https://dev.azure.com/MyOrganization'
_TEST_VISUAL_STUDIO_ORGANIZATION = 'https://mseng.visualstudio.com/'
_TEST_ADO_SERVER_ORGANIZATION = 'http://desktop-mf32o61/DefaultCollection/'
def setUp(self):
clear_connection_cache()
def test_get_connection_cache_works(self):
with patch('azext_devops.dev.common.services._get_credentials') as mock_get_credentials:
with patch('azext_devops.dev.common.telemetry.try_send_telemetry_data') as mock_telemetry_send:
get_connection(self._TEST_DEVOPS_ORGANIZATION)
get_connection(self._TEST_DEVOPS_ORGANIZATION.lower())
#assert
mock_telemetry_send.assert_called_once_with(self._TEST_DEVOPS_ORGANIZATION.lower())
mock_get_credentials.assert_called_once()
def test_get_connection_cache_works_mulitple_organization(self):
with patch('azext_devops.dev.common.services._get_credentials') as mock_get_credentials:
with patch('azext_devops.dev.common.telemetry.try_send_telemetry_data') as mock_telemetry_send:
get_connection(self._TEST_DEVOPS_ORGANIZATION)
get_connection(self._TEST_DEVOPS_ORGANIZATION2)
#assert
self.assertEqual(2, mock_get_credentials.call_count)
self.assertEqual(2, mock_telemetry_send.call_count)
def test_resolve_instance_project_and_repo(self):
try:
resolve_instance_project_and_repo(detect='false',
organization='https://dev.azure.com/someorg',
project='',
project_required=False,
repo=None,
repo_required=True)
self.fail('we should have received an error')
except CLIError as ex:
self.assertEqual(str(ex), '--repository must be specified')
def test_resolve_instance_should_fail_for_invalid_org_url(self):
with self.assertRaises(Exception) as exc:
resolve_instance(organization='myorg', detect=False)
self.assertEqual(str(exc.exception), self.ORG_ERROR_STRING)
def test_check_organization_in_azure_with_dev_url(self):
showWarning = check_organization_in_azure(self._TEST_DEVOPS_ORGANIZATION)
self.assertEqual(True, showWarning)
def test_check_organization_in_azure_with_visual_studio_url(self):
showWarning = check_organization_in_azure(self._TEST_VISUAL_STUDIO_ORGANIZATION)
self.assertEqual(True, showWarning)
def test_check_organization_in_azure_with_ado_server_url(self):
showWarning = check_organization_in_azure(self._TEST_ADO_SERVER_ORGANIZATION)
self.assertEqual(False, showWarning)
ORG_ERROR_STRING = ('--organization must be specified. The value should be the URI of your Azure DevOps '
'organization, for example: https://dev.azure.com/MyOrganization/ or your Azure DevOps Server organization. '
'You can set a default value by running: az devops configure --defaults '
'organization=https://dev.azure.com/MyOrganization/. For auto detection to work '
'(--detect true), you must be in a local Git directory that has a "remote" referencing a '
'Azure DevOps or Azure DevOps Server repository.')
if __name__ == '__main__':
unittest.main()
|