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
|
# 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 testutils.common_recordingtestcase import record
from tests.mgmt_testcase import HttpStatusCode, AzureMgmtTestCase
class MgmtIoTHubTest(AzureMgmtTestCase):
def setUp(self):
super(MgmtIoTHubTest, self).setUp()
self.iothub_client = self.create_mgmt_client(
azure.mgmt.iothub.IotHubClient
)
@record
def test_iothub(self):
self.create_resource_group()
account_name = self.get_resource_name('iot')
is_available = self.iothub_client.iot_hub_resource.check_name_availability(
account_name
)
self.assertTrue(is_available.name_available)
async_iot_hub = self.iothub_client.iot_hub_resource.create_or_update(
self.group_name,
account_name,
{
'location': self.region,
'subscriptionid': self.settings.SUBSCRIPTION_ID,
'resourcegroup': self.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 = async_iot_hub.result()
#------------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()
|