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
|
# 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.resource
from testutils.common_recordingtestcase import record
from tests.mgmt_testcase import HttpStatusCode, AzureMgmtTestCase
class MgmtResourceFeaturesTest(AzureMgmtTestCase):
def setUp(self):
super(MgmtResourceFeaturesTest, self).setUp()
self.features_client = self.create_mgmt_client(
azure.mgmt.resource.FeatureClient
)
@record
def test_features(self):
features = list(self.features_client.features.list_all())
self.assertGreater(len(features), 0)
self.assertTrue(all(isinstance(v, azure.mgmt.resource.features.models.FeatureResult) for v in features))
features = list(self.features_client.features.list('Microsoft.Compute'))
self.assertGreater(len(features), 0)
self.assertTrue(all(isinstance(v, azure.mgmt.resource.features.models.FeatureResult) for v in features))
one_feature = features[0]
feature = self.features_client.features.get(
'Microsoft.Compute',
one_feature.name.split('/')[1]
)
self.features_client.features.register(
'Microsoft.Compute',
feature.name.split('/')[1]
)
#------------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()
|