File size: 20,497 Bytes
065fee7 |
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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# Table of contents
- [Overview](#overview)
- [Getting the tests to run](#running-the-tests)
- [Setting up a test environment](#setting-up-a-test-environment)
- [Running the tests](#running-the-tests)
- [Getting Azure credentials](#getting-azure-credentials)
- [Get a token with Active Directory application and service principal](#get-a-token-with-active-directory-application-and-service-principal)
- [Providing credentials to the tests](#providing-credentials-to-the-tests)
- [Running tests in live mode](#running-tests-in-live-mode)
- [Using the Azure Python SDK test framework](#writing-new-tests)
IMPORTANT NOTE: All the commands in this page assumes you have loaded the [dev_setup][dev_setup] in your currently loaded virtual environment.
# Overview
This page is to help you write tests for Azure Python SDK when these tests require Azure HTTP requests. The Azure SDK test framework uses the [`azure-sdk-tools`][azure_sdk_tools] package, which in turn rests upon on a HTTP recording system ([testproxy][testproxy]) that enables tests dependent on network interaction to be run offline.
In this document, we will describe:
- [How to run the tests online (by authenticating with Azure to record new HTTP interactions)](#running-tests-in-live-mode)
- [How to run the tests offline (using previously recorded HTTP interactions)](#running-tests-in-playback-mode)
- [How to write new tests using our utility classes](#writing-new-tests)
# Getting the tests to run
This section describes how to run the SDK tests, by installing dependencies into a virtual environment and using a helper script and the [pytest][pytest] test runner to choose which tests to run.
## Running the tests
In this section, we will be running the tests in `azure-mgmt-storage`. Azure SDK tests use [pytest][pytest] test runner. To run all the tests, you can use the following command:
```Shell
sdk/storage/azure-mgmt-storage> pytest
```
You can provide directories or individual files as positional arguments to specify particular tests to run rather than running the entire test suite. For example:
```Shell
sdk/storage/azure-mgmt-storage> pytest
sdk/storage/azure-mgmt-storage> pytest tests/test_mgmt_storage.py
```
If you have print statements in your tests for debugging you can add the `-s` flag to send those print statements to standard output:
```Shell
sdk/storage/azure-mgmt-storage> pytest -s
```
## Getting Azure credentials
There are several ways to authenticate to Azure, but to be able to record test HTTP interactions, you must use an OAuth authentication method which gives you a token:
- Active Directory application and service principal
### Get a token with Active Directory application and service principal
Follow this detailed tutorial to set up an Active Directory application and service principal:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
To use the credentials from Python, you need:
* Application ID (a.k.a. client ID)
* Authentication key (a.k.a. client secret)
* Tenant ID
* Subscription ID from the Azure portal
[This section of the above tutorial](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-tenant-and-app-id-values-for-signing-in) describes where to find them (besides the subscription ID, which is in the "Overview" section of the "Subscriptions" blade.)
The recommended practice is to store these three values in environment variables called `AZURE_TENANT_ID`, `AZURE_CLIENT_ID`, and `AZURE_CLIENT_SECRET`. To set an environment variable use the following commands:
```Shell
$env:AZURE_TENANT_ID='<value>' # PowerShell only
set AZURE_TENANT_ID=<value> # Windows CMD (alternatively, use export AZURE_TENANT_ID=<value> to export to the global env)
export AZURE_TENANT_ID=<value> # Linux shell only
```
*** Note: when setting these variables, do not wrap the value in quotation marks ***
You are now able to log in from Python using OAuth. Before use, you need to run the `pip install azure-identity` command to install it.
You can test with this code:
```python
import os
from azure.identity import ClientSecretCredential
credentials = ClientSecretCredential(
client_id = os.environ['AZURE_CLIENT_ID'],
secret = os.environ['AZURE_CLIENT_SECRET'],
tenant = os.environ['AZURE_TENANT_ID']
)
```
Or you can use `DefaultAzureCredential`, which we prefer.
You can test with this code:
```python
import os
from azure.identity import DefaultAzureCredential
credentials = DefaultAzureCredential()
```
## Providing credentials to the tests
When you run tests in playback mode, they use a fake credentials file, located at [`tools/azure-sdk-tools/devtools_testutils/mgmt_settings_fake.py`][mgmt_settings_fake], to simulate authenticating with Azure. In most scenarios you will not have to adjust this file, you will have to make edits to this file if your service uses values that are not already included in the `mgmt_settings_fake.py` file.
In live mode, you need to use real credentials like those you obtained in the previous section. To enable the tests to use them, make a copy of the `mgmt_settings_fake.py` file in the same location, and rename it `mgmt_settings_real.py`.
Then make the following changes:
* Change the value of the `SUBSCRIPTION_ID` constant to your subscription ID. (If you don't have it, you can find it in the "Overview" section of the "Subscriptions" blade in the [Azure portal][azure_portal].)
* Change the `get_azure_core_credential()` function to construct and return a `ClientSecretCredential`:
```python
def get_azure_core_credential(**kwargs):
from azure.identity import ClientSecretCredential
import os
return ClientSecretCredential(
client_id = os.environ['AZURE_CLIENT_ID'],
client_secret = os.environ['AZURE_CLIENT_SECRET'],
tenant_id = os.environ['AZURE_TENANT_ID']
)
```
* Or you could use the `get_credential()` function to construct and return a `DefaultAzureCredential`:
```
def get_credential(**kwargs):
from azure.identity import DefaultAzureCredential
return DefaultAzureCredential()
```
These two methods are used by the authentication methods within `AzureTestCase` to provide the correct credential for your client class, you do not need to call these methods directly. Authenticating clients will be discussed further in the [examples](#writing-management-plane-test) section.
**Important: `mgmt_settings_real.py` should not be committed since it contains your actual credentials! To prevent this, it is included in `.gitignore`.**
## Running tests in live mode
To configure the tests to run in live mode, you have two options:
* Set the environment variable `AZURE_TEST_RUN_LIVE` to "true" or "yes".
* Create the `tools/azure-sdk-tools/devtools_testutils/testsettings_local.cfg` file and copy and paste the following line:
```
live-mode: true
```
(`testsettings_local.cfg` is listed in `.gitignore` and not present in the repo; if it's missing, the tests default to playback mode.)
Now you can run tests using the same method described in [Running the tests](#running-the-tests). You would be well-advised to specify a limited number of tests to run. Running every existing test in live mode will take a very long time and produce a great deal of changes to recording files in your Git repository. However, for changes in the client code, the recordings will need to be committed to the Git repository.
## Running tests in playback mode
Now that the tests have been run against live resources and generated the HTTP recordings, you can run your tests in playback mode. There are two options for changing from live mode to playback mode:
* Set the environment variable `AZURE_TEST_RUN_LIVE` to "false" or "no".
* Change the `tools/azure-sdk-tools/devtools_testutils/testsettings_local.cfg` file to:
```
live-mode: false
```
# Writing new tests
Code in the [`azure-sdk-tools/devtools_testutils`][devtools_testutils] directory provides concrete implementations of the features provided in `scenario_tests` that are oriented around use in SDK testing and that you can use directly in your unit tests.
## Test structure
New tests should be located alongside the packages containing the code they test. For example, the tests for `azure-mgmt-media` are in `azure-mgmt-media/tests`.
There are also legacy tests in the following three locations:
* azure-servicebus/tests
* azure-servicemanagement-legacy/tests
For more information about legacy tests, see [Legacy tests](https://github.com/Azure/azure-sdk-for-python/wiki/Legacy-tests).
## Writing management plane test
Management plane SDKs are those that are formatted `azure-mgmt-xxxx`, otherwise the SDK is data plane. Management plane SDKs work against the [Azure Resource Manager APIs][arm_apis], while the data plane SDKs will work against service APIs. This section will demonstrate writing tests using `devtools_testutils` with a few increasingly sophisticated examples to show how to use some of the features of the underlying test frameworks.
### Tips:
After the migration of the test proxy, `conftests.py` needs to be configured under the tests folder.<br/>
* For a sample about `conftest.py`, see [conftest.py](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/advisor/azure-mgmt-advisor/tests/conftest.py). <br/>
* For more information about test proxy, see [TestProxy][testproxy].
### Example 1: Basic Azure service interaction and recording
```python
from azure.mgmt.resource import ResourceManagementClient
from devtools_testutils import AzureMgmtRecordedTestCase, recorded_by_proxy
AZURE_LOCATION = 'eastus'
class TestExampleResourceGroup(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(ResourceManagementClient)
@recorded_by_proxy
def test_create_resource_group(self):
test_group_name = self.get_resource_name('testgroup')
group = self.client.resource_groups.create_or_update(
test_group_name,
{'location': 'westus'}
)
assert group.name == test_group_name
self.client.resource_groups.begin_delete(group.name)
```
This simple test creates a resource group and checks that its name is assigned correctly.
Notes:
1. This test inherits all necessary behavior for HTTP recording and playback described previously in this document from its `AzureMgmtRecordedTestCase` superclass. You don't need to do anything special to implement it.
2. The `get_resource_name()` helper method of `AzureMgmtRecordedTestCase` creates a pseudorandom name based on the parameter and the names of the test file and method. This ensures that the name generated is the same for each run of the same test, ensuring reproducability and preventing name collisions if the tests are run live and the same parameter is used from several different tests.
3. The `create_mgmt_client()` helper method of `AzureMgmtRecordedTestCase` creates a client object using the credentials from `mgmt_settings_fake.py` or `mgmt_settings_real.py` as appropriate, with some checks to make sure it's created successfully and cause the unit test to fail if not. You should use it for any clients you create.
4. While the test cleans up the resource group it creates, you will need to manually delete any resources you've created independent of the test framework. But if you need something like a resource group as a prerequisite for what you're actually trying to test, you should use a "preparer" as demonstrated in the following two examples. Preparers will create and clean up helper resources for you.
### Example 2: Basic preparer usage
```python
import azure.mgmt.search
from devtools_testutils import AzureMgmtRecordedTestCase, ResourceGroupPreparer, recorded_by_proxy
class TestMgmtSearch(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(
azure.mgmt.search.SearchManagementClient
)
@ResourceGroupPreparer()
@recorded_by_proxy
def test_search_services(self, resource_group, location):
account_name = self.get_resource_name(''ptvstestsearch')
service = self.client.services.begin_create_or_update(
resource_group.name,
account_name,
{
'location': location,
'replica_count': 1,
'partition_count': 1,
'hosting_mode': 'Default',
'sku': {
'name': 'standard'
}
}
).result()
availability = self.client.services.check_name_availability(account_name)
assert not availability.is_name_available
assert availability.reason == "AlreadyExists"
service = self.client.services.get(
resource_group.name,
service.name
)
assert service.name == account_name
```
This test creates a Search server and confirms that its name is set correctly. Because a Search server must be created in a resource group, the test uses a `ResourceGroupPreparer` to create a group for use in the test.
Preparers are [decorators][decorators] that "wrap" a test method, transparently replacing it with another function that has some additional functionality before and after it's run. For example, the `@ResourceGroupPreparer` decorator adds the following to the wrapped method:
* creates a resource group
* inspects the argument signature of the wrapped method and passes in information about the created resource group if appropriately-named parameters (here, `resource_group` and `location`) are present
* deletes the resource group after the test is run
Notes:
1. HTTP interactions undertaken by preparers to create and delete the prepared resource are not recorded or played back, as they're not part of what the test is testing.
2. If the test is run in playback mode, the `resource_group` parameter will be a simple `FakeResource` object with a pseudorandom `name` attribute and a blank `id` attribute. If you need a more sophisticated fake object, see the next example.
3. Why not use a preparer in Example 1, above?
Preparers are only for *auxiliary* resources that aren't part of the main focus of the test. In example 1, we want to test the actual creation and naming of the resource group, so those operations are part of the test.
By contrast, in example 2, the subject of the test is the Search management operations; the resource group is just a prerequisite for those operations. We only want this test to fail if something is wrong with the Search server creation.
If there's something wrong with the resource group creation, there should be a dedicated test for that.
### Example 3: More complicated preparer usage
```python
import azure.mgmt.batch
from azure.mgmt.batch import models
from devtools_testutils import (
AzureMgmtRecordedTestCase,
recorded_by_proxy,
ResourceGroupPreparer,
StorageAccountPreparer
)
AZURE_ARM_ENDPOINT = "https://centraluseuap.management.azure.com"
AZURE_LOCATION = 'eastus'
class TestMgmtBatch(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.mgmt_batch_client = self.create_mgmt_client(
azure.mgmt.batch.BatchManagementClient,
base_url=AZURE_ARM_ENDPOINT)
@ResourceGroupPreparer(location=AZURE_LOCATION)
@StorageAccountPreparer(name_prefix='batch', location=AZURE_LOCATION)
@recorded_by_proxy
def test_mgmt_batch_applications(self, resource_group, location, storage_account, storage_account_key):
# Test Create Account with Auto-Storage
storage_resource = '/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Storage/storageAccounts/{}'.format(
self.get_settings_value("SUBSCRIPTION_ID"),
resource_group.name,
storage_account.name
)
batch_account = models.BatchAccountCreateParameters(
location=location,
auto_storage=models.AutoStorageBaseProperties(storage_account_id=storage_resource)
)
account_name = "testbatch"
account_setup = self.mgmt_batch_client.batch_account.begin_create(
resource_group.name,
account_name,
batch_account).result()
assert account_setup.name == account_name
```
This test creates a batch account and confirms that its name is set correctly.
Notes:
1. Here, we want to test creation of a batch account, which requires a storage account. We want to use a preparer for this, but creation of a storage account itself needs a resource group. So we need both a `ResourceGroupPreparer` and a `StorageAccountPreparer`, in that order.
2. Both preparers are customized. We pass a `parameter_name` keyword argument of `group` to `ResourceGroupPreparer`, and as a result the resource group is passed into the test method through the `group` parameter (rather than the default `resource_group`). Then, because `StorageAccountPreparer` needs a resource group, we need to let it know about the modified parameter name. We do so with the `resource_group_parameter_name` argument. Finally, we pass a `name_prefix` to `StorageAccountPreparer`. The names it generates by default include the fully qualified test name, and so tend to be longer than is allowed for storage accounts. You'll probably always need to use `name_prefix` with `StorageAccountPreparer`.
3. We want to ensure that the group retrieved by `get_properties` has a `kind` of `BlobStorage`. We create a `FakeStorageAccount` object with that attribute and pass it to `StorageAccountPreparer`, and also pass the `kind` keyword argument to `StorageAccountPreparer` so that it will be passed through when a storage account is prepared for real.
4. Similarly to how a resource group parameter is added by `ResourceGroupPreparer`, `StorageAccountPreparer` passes the model object for the created storage account as the `storage_account` parameter, and that parameter's name can be customized. `StorageAccountPreparer` also creates an account access key and passes it into the test method through a parameter whose name is formed by appending `_key` to the name of the parameter for the account itself.
### Example 4: Different endpoint than public Azure (China, Dogfood, etc.)
```python
import azure.mgmt.search
from devtools_testutils import AzureMgmtRecordedTestCase, ResourceGroupPreparer, recorded_by_proxy
_CUSTOM_ENDPOINT = "https://api-dogfood.resources.windows-int.net/"
class TestMgmtSearch(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.client = self.create_mgmt_client(
azure.mgmt.search.SearchManagementClient,
base_url=_CUSTOM_ENDPOINT
)
@ResourceGroupPreparer(client_kwargs={'base_url':_CUSTOM_ENDPOINT})
@recorded_by_proxy
def test_search_services(self, resource_group, location):
account_name = self.get_resource_name(''ptvstestsearch')
service = self.client.services.begin_create_or_update(
resource_group.name,
account_name,
{
'location': location,
'replica_count': 1,
'partition_count': 1,
'hosting_mode': 'Default',
'sku': {
'name': 'standard'
}
}
).result()
availability = self.client.services.check_name_availability(account_name)
assert not availability.is_name_available
assert availability.reason == "AlreadyExists"
assert service.name == account_name
```
<!-- LINKS -->
[arm_apis]: https://docs.microsoft.com/rest/api/resources/
[azure_sdk_tools]: https://github.com/Azure/azure-sdk-for-python/tree/main/tools/azure-sdk-tools
[azure_portal]: https://portal.azure.com/
[decorators]: https://www.python.org/dev/peps/pep-0318/
[dev_setup]: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/dev_setup.md
[devtools_testutils]: https://github.com/Azure/azure-sdk-for-python/tree/main/tools/azure-sdk-tools/devtools_testutils
[mgmt_settings_fake]: https://github.com/Azure/azure-sdk-for-python/blob/main/tools/azure-sdk-tools/devtools_testutils/mgmt_settings_fake.py
[testproxy]: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/test_proxy_migration_guide.md
[pytest]: https://docs.pytest.org/en/latest/
|