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
|
# coding: utf-8
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
import unittest
import azure.mgmt.iothub
from datetime import date, timedelta
from devtools_testutils import AzureMgmtRecordedTestCase, ResourceGroupPreparer, recorded_by_proxy
class TestMgmtIoTHub(AzureMgmtRecordedTestCase):
def setup_method(self, method):
self.iothub_client = self.create_mgmt_client(
azure.mgmt.iothub.IotHubClient
)
@ResourceGroupPreparer()
@recorded_by_proxy
def test_iothub(self, resource_group, location):
account_name = self.get_resource_name('iot')
is_available = self.iothub_client.iot_hub_resource.check_name_availability(
{
"name": account_name
}
)
assert is_available.name_available
async_iot_hub = self.iothub_client.iot_hub_resource.begin_create_or_update(
resource_group.name,
account_name,
{
'location': location,
'subscriptionid': self.get_settings_value("SUBSCRIPTION_ID"),
'resourcegroup': resource_group.name,
'sku': {
'name': 'S1',
'capacity': 2
},
'properties': {
'enable_file_upload_notifications': False,
'operations_monitoring_properties': {
'events': {
"C2DCommands": "Error",
"DeviceTelemetry": "Error",
"DeviceIdentityOperations": "Error",
"Connections": "Information"
}
},
"features": "None",
}
}
)
iothub_account = async_iot_hub.result()
assert iothub_account.name == account_name
iothub_account = self.iothub_client.iot_hub_resource.get(
resource_group.name,
account_name
)
assert iothub_account.name == account_name
iothub_accounts = list(self.iothub_client.iot_hub_resource.list_by_resource_group(resource_group.name))
assert all(i.name == account_name for i in iothub_accounts)
iothub_accounts = list(self.iothub_client.iot_hub_resource.list_by_subscription())
assert any(i.name == account_name for i in iothub_accounts)
stats = self.iothub_client.iot_hub_resource.get_stats(
resource_group.name,
account_name
)
skus = list(self.iothub_client.iot_hub_resource.get_valid_skus(
resource_group.name,
account_name
))
jobs = list(self.iothub_client.iot_hub_resource.list_jobs(
resource_group.name,
account_name
))
quota_metrics = list(self.iothub_client.iot_hub_resource.get_quota_metrics(
resource_group.name,
account_name
))
async_delete = self.iothub_client.iot_hub_resource.begin_delete(
resource_group.name,
account_name
)
async_delete.wait()
@unittest.skip('hard to test')
@ResourceGroupPreparer()
@recorded_by_proxy
def test_iothub_consumer_group(self, resource_group, location):
account_name = self.get_resource_name('iot')
async_iot_hub = self.iothub_client.iot_hub_resource.begin_create_or_update(
resource_group.name,
account_name,
{
'location': location,
'subscriptionid': self.get_settings_value("SUBSCRIPTION_ID"),
'resourcegroup': resource_group.name,
'sku': {
'name': 'S1',
'capacity': 2
},
'properties': {
'enable_file_upload_notifications': False,
'operations_monitoring_properties': {
'events': {
"C2DCommands": "Error",
"DeviceTelemetry": "Error",
"DeviceIdentityOperations": "Error",
"Connections": "Information"
}
},
"features": "None",
}
}
)
async_iot_hub.wait()
cg_account_name = self.get_resource_name('consumergrp')
consumer_group = self.iothub_client.iot_hub_resource.create_event_hub_consumer_group(
resource_group.name,
account_name,
'events',
cg_account_name
)
consumer_group = self.iothub_client.iot_hub_resource.get_event_hub_consumer_group(
resource_group.name,
account_name,
'events',
consumer_group.name
)
consumer_groups = list(self.iothub_client.iot_hub_resource.list_event_hub_consumer_groups(
resource_group.name,
account_name,
'events'
))
assert any(group.name == consumer_group.name for group in consumer_groups)
self.iothub_client.iot_hub_resource.delete_event_hub_consumer_group(
resource_group.name,
account_name,
'events',
consumer_group.name
)
#------------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()
|