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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import unittest
from knack.util import CLIError
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 azext_devops.dev.repos.policy import *
from azext_devops.devops_sdk.v5_0.policy.models import PolicyConfiguration, PolicyTypeRef
from azext_devops.dev.common.services import clear_connection_cache
from azext_devops.tests.utils.authentication import AuthenticatedTests
from azext_devops.devops_sdk.v5_0.policy.policy_client import PolicyClient
class TestUuidMethods(AuthenticatedTests):
_TEST_DEVOPS_ORGANIZATION = 'https://someorg.visualstudio.com'
_TEST_DEVOPS_PROJECT = 'sample project'
_TEST_PAT_TOKEN = 'lwghjbj67fghokrgxsytghg75nk2ssguljk7a78qpcg2ttygviyt'
_TEST_REPOSITORY_ID = 'b4da517c-0398-42dc-b2a8-0d3f240757f9'
def setUp(self):
self.authentication_setup()
self.get_client = patch('azext_devops.devops_sdk.connection.Connection.get_client')
self.get_policies_patcher = patch('azext_devops.devops_sdk.v5_0.policy.policy_client.PolicyClient.get_policy_configurations')
self.get_policy_patcher = patch('azext_devops.devops_sdk.v5_0.policy.policy_client.PolicyClient.get_policy_configuration')
self.delete_policy_patcher = patch('azext_devops.devops_sdk.v5_0.policy.policy_client.PolicyClient.delete_policy_configuration')
self.create_policy_patcher = patch('azext_devops.devops_sdk.v5_0.policy.policy_client.PolicyClient.create_policy_configuration')
self.update_policy_patcher = patch('azext_devops.devops_sdk.v5_0.policy.policy_client.PolicyClient.update_policy_configuration')
self.mock_get_client = self.get_client.start()
self.mock_get_policies = self.get_policies_patcher.start()
self.mock_get_policy = self.get_policy_patcher.start()
self.mock_delete_policy = self.delete_policy_patcher.start()
self.mock_create_policy = self.create_policy_patcher.start()
self.mock_update_policy = self.update_policy_patcher.start()
self.mock_get_client.return_value = PolicyClient(base_url=self._TEST_DEVOPS_ORGANIZATION)
clear_connection_cache()
def tearDown(self):
patch.stopall()
def test_list_policy(self):
list_policy(organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_get_policies.assert_called_once_with(project=self._TEST_DEVOPS_PROJECT, scope=None)
def test_list_policy_repo_scope(self):
list_policy(organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT,
repository_id='fake_repo_id')
#assert
self.mock_get_policies.assert_called_once_with(project=self._TEST_DEVOPS_PROJECT, scope='fake_repo_id')
def test_list_policy_branch_scope(self):
list_policy(organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT,
repository_id='1d1dad71-f27c-4370-810d-838ec41efd41',
branch='master')
#assert
self.mock_get_policies.assert_called_once_with(project=self._TEST_DEVOPS_PROJECT, scope='1d1dad71f27c4370810d838ec41efd41:refs/heads/master')
def test_list_policy__only_branch_scope_error(self):
try:
list_policy(organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT,
branch='master')
self.fail('failure was expected')
except CLIError as ex:
#assert
self.assertEqual(str(ex),
'--repository-id is required with --branch')
def test_get_policy(self):
get_policy(policy_id = 121,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_get_policy.assert_called_once_with(project=self._TEST_DEVOPS_PROJECT, configuration_id=121)
def test_delete_policy(self):
delete_policy(policy_id = 121,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_delete_policy.assert_called_once_with(project=self._TEST_DEVOPS_PROJECT, configuration_id=121)
def test_create_policy_config_file(self):
configuration = {
'is_blocking' : True,
'is_enabled' : False
}
import tempfile
temp_config_file = tempfile.NamedTemporaryFile(mode='w', delete=False)
import json
json.dump(configuration, temp_config_file)
temp_config_file.close()
create_policy_configuration_file(policy_configuration = temp_config_file.name,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_create_policy.assert_called_once()
create_policy_object = self.mock_create_policy.call_args_list[0][1]
self.assertEqual(self._TEST_DEVOPS_PROJECT, create_policy_object['project'], str(create_policy_object))
self.assertEqual(create_policy_object['configuration']['is_enabled'], False)
self.assertEqual(create_policy_object['configuration']['is_blocking'], True)
def test_update_policy_configuration_file(self):
configuration = {
'is_blocking' : True,
'is_enabled' : False
}
import tempfile
temp_config_file = tempfile.NamedTemporaryFile(mode='w', delete=False)
import json
json.dump(configuration, temp_config_file)
temp_config_file.close()
update_policy_configuration_file(policy_id = 121,
policy_configuration = temp_config_file.name,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_update_policy.assert_called_once()
update_policy_object = self.mock_update_policy.call_args_list[0][1]
self.assertEqual(update_policy_object['configuration_id'], 121)
self.assertEqual(self._TEST_DEVOPS_PROJECT, update_policy_object['project'])
self.assertEqual(update_policy_object['configuration']['is_enabled'], False)
self.assertEqual(update_policy_object['configuration']['is_blocking'], True)
def test_create_policy_approver_count(self):
create_policy_approver_count(repository_id = self._TEST_REPOSITORY_ID,
branch='master',
blocking=False,
enabled=True,
minimum_approver_count='5',
creator_vote_counts=False,
allow_downvotes=False,
reset_on_source_push=True,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
#assert
self.mock_create_policy.assert_called_once()
self.mock_create_policy.assert_called_once()
create_policy_object = self.mock_create_policy.call_args_list[0][1]
self.assertEqual(self._TEST_DEVOPS_PROJECT, create_policy_object['project'])
settings = create_policy_object['configuration'].settings
self.assertEqual(settings['minimumApproverCount'], '5')
self.assertEqual(settings['creatorVoteCounts'], False)
self.assertEqual(settings['allowDownvotes'], False)
self.assertEqual(settings['resetOnSourcePush'], True)
scope = create_policy_object['configuration'].settings['scope'][0] # 0 because we set only only scope from CLI
self.assertEqual(scope['repositoryId'], self._TEST_REPOSITORY_ID)
self.assertEqual(scope['refName'], 'refs/heads/master')
self.assertEqual(scope['matchKind'], 'exact')
def test_update_policy_approver_count(self):
current_policy = PolicyConfiguration(is_blocking=False, is_enabled=False)
policy_type = PolicyTypeRef()
policy_type.id = 'fa4e907d-c16b-4a4c-9dfa-4906e5d171dd'
current_policy.type = policy_type
current_policy.settings = {
'minimumApproverCount' : 2,
'creatorVoteCounts' : False,
'allowDownvotes' : False,
'resetOnSourcePush' : False,
'scope':[
{
'refName': 'ref\heads\master',
'repositoryId':self._TEST_REPOSITORY_ID,
'matchKind': 'exact'
}
]
}
self.mock_get_policy.return_value = current_policy
update_policy_approver_count(policy_id=121,
allow_downvotes=True,
blocking=True,
reset_on_source_push=False,
organization = self._TEST_DEVOPS_ORGANIZATION,
project = self._TEST_DEVOPS_PROJECT)
self.mock_get_policy.assert_called_once()
self.mock_update_policy.assert_called_once()
update_policy_object = self.mock_update_policy.call_args_list[0][1]
self.assertEqual(update_policy_object['configuration_id'], 121)
self.assertEqual(update_policy_object['configuration'].is_enabled, False)
self.assertEqual(update_policy_object['configuration'].is_blocking, True)
settings = update_policy_object['configuration'].settings
self.assertEqual(settings['minimumApproverCount'], 2)
self.assertEqual(settings['creatorVoteCounts'], False)
self.assertEqual(settings['allowDownvotes'], True)
self.assertEqual(settings['resetOnSourcePush'], False)
if __name__ == '__main__':
unittest.main()
|