def test_custom_api_call(self):
     # an example: custom api call
     from mbed_cloud import SDK
     from mbed_cloud.foundation import User
     response = SDK().client.call_api('get',
                                      '/v3/users',
                                      query_params={'limit': 2})
     # response object from the`requests` library
     for user_data in response.json()['data']:
         user = User().from_api(**user_data)
     # end of example
     self.assertIsInstance(user, User)
     self.assertIsNotNone(user.id)
def create_foundation_entity_instance(entity):
    """Create an instance of a Foundation SDK Entity"""
    # Get an SDK class and use the configuration generation behaviour to pass in parameters
    sdk_instance = SDK(**(request.get_json() or {}))

    try:
        # Entity names are PascalCase, SDK entity methods are snake case.
        method_name = re.sub('(?<!^)(?=[A-Z])', '_', entity).lower()
        entity_class = getattr(sdk_instance.foundation, method_name)
    except AttributeError:
        raise NotFound("Entity '%s' which was reformatted to '%s' cannot be found." % (entity, method_name))

    instance = LockedInstance(
        lock=threading.Lock(),
        instance=entity_class(),
        module=None,
        entity=entity,
        uuid=str(uuid.uuid4().hex),
        created_at=datetime.datetime.utcnow(),
    )
    STORE[instance.uuid] = instance
    response = app.response_class(
        response=json.dumps(serialise_instance(instance)),
        status=201,
        mimetype='application/json'
    )
    return response
    def test_hello_world_with_multiple_api_keys(self):
        ACCOUNT_ONE_API_KEY = os.getenv("MBED_CLOUD_SDK_API_KEY")
        ACCOUNT_TWO_API_KEY = os.getenv("MBED_CLOUD_SDK_API_KEY")
        # an example: hello world with multiple api keys
        from mbed_cloud import SDK

        # Create instances of the Pelion Device Management SDK for two accounts
        account_one = SDK(api_key=ACCOUNT_ONE_API_KEY)
        account_two = SDK(api_key=ACCOUNT_TWO_API_KEY)

        # List the first 10 devices on the first account
        for device in account_one.foundation.device().list(max_results=10):
            print("Account One device %s" % device.name)

        # List the first 10 devices on the second account
        for device in account_two.foundation.device().list(max_results=10):
            print("Account Two device %s" % device.name)
 def test_really_custom_config(self):
     # an example: using custom hosts
     from mbed_cloud import SDK
     from mbed_cloud.sdk import Config
     config = Config(api_key='ak_1', host='https://example')
     all_users = SDK(config).foundation.user().list()
     # end of example
     self.assertIsInstance(all_users, PaginatedResponse)
    def test_read_first_entity_in_list(self):
        from mbed_cloud import SDK

        pelion_dm_sdk = SDK()

        # an example: read first entity in list
        first_user_in_list = pelion_dm_sdk.foundation.user().list().first()
        print("User email address: %s" % first_user_in_list.email)
    def test_hello_world_with_sdk_instance(self):
        # an example: hello world with sdk instance
        from mbed_cloud import SDK

        # Create an instance of the Pelion Device Management SDK
        pelion_dm_sdk = SDK()
        # List the first 10 devices on your Pelion DM account
        for device in pelion_dm_sdk.foundation.device().list(max_results=10):
            print("Hello device %s" % device.name)
    def test_list_entities(self):
        from mbed_cloud import SDK

        pelion_dm_sdk = SDK()

        # an example: list entities
        paginator = pelion_dm_sdk.foundation.user().list(order="ASC",
                                                         page_size=5,
                                                         max_results=10,
                                                         include="total_count")

        for user in paginator:
            print("%s (%s): %s" % (user.full_name, user.id, user.email))

        print("Total Count: %d" % paginator.count())
    def test_list_entities_with_filters(self):
        from mbed_cloud import SDK
        pelion_dm_sdk = SDK()

        # an example: list entities with filters
        from mbed_cloud import ApiFilter
        from mbed_cloud.foundation.enums import UserStatusEnum

        api_filter = ApiFilter()
        api_filter.add_filter("email", "eq", "*****@*****.**")
        api_filter.add_filter(
            "status", "in", [UserStatusEnum.ACTIVE, UserStatusEnum.ENROLLING])

        for user in pelion_dm_sdk.foundation.user().list(filter=api_filter):
            print("%s (%s): %s" % (user.full_name, user.id, user.email))
    def test_firmware_update_campaign_launch(self):
        from mbed_cloud.foundation import FirmwareManifest

        firmware_manifest = FirmwareManifest().list().first()
        my_manifest_id = firmware_manifest.id

        # an example: firmware update campaign launch
        from datetime import datetime
        from pprint import pprint
        from mbed_cloud import SDK
        from mbed_cloud import ApiFilter

        pelion_dm_sdk = SDK()
        new_campaign = pelion_dm_sdk.foundation.update_campaign(
            root_manifest_id=my_manifest_id,
            name="campaign - " + str(datetime.now()),
            description="Update campaign for prior 2019 devices")

        # Create a filter for all devices created before the 1st of January 2019 so that these devices will have their
        # firmware replaced by the one defined in the manifest.
        api_filter = ApiFilter()
        api_filter.add_filter("created_at", "lte", datetime(2019, 1, 1))
        new_campaign.device_filter_helper = api_filter

        # Create the campaign
        new_campaign.create()

        # Determine the phase of the campaign
        print("Campaign Phase:", new_campaign.phase)

        # Start the campaign
        new_campaign.start()

        # Determine the phase of the campaign
        new_campaign.read()
        print("Campaign Phase:", new_campaign.phase)

        # Print all device metadata related to this campaign
        for campaign_device_metadata in new_campaign.device_metadata():
            pprint(campaign_device_metadata.to_dict())

        # end of example
        new_campaign.stop()
        new_campaign.read()
        print("Campaign Phase:", new_campaign.phase)

        new_campaign.delete()
    def test_certificate_black_listing(self):
        from mbed_cloud.foundation import TrustedCertificate

        # Find a production certificate
        my_certificate = TrustedCertificate().list(filter={
            "device_execution_mode": {
                "neq": 1
            }
        }).first()
        my_cert_id = my_certificate.id
        # Record the original status to revert to its original state at the end
        original_status = TrustedCertificate(id=my_cert_id).read().status

        # an example: certificate black listing
        from mbed_cloud import SDK
        from mbed_cloud import ApiFilter
        from mbed_cloud.foundation.enums import TrustedCertificateStatusEnum

        pelion_dm_sdk = SDK()

        # Set the certificate to inactive
        my_cert = pelion_dm_sdk.foundation.trusted_certificate(
            id=my_cert_id).read()
        my_cert.status = TrustedCertificateStatusEnum.INACTIVE
        my_cert.update()

        # List all devices which have tried to bootstrap
        api_filter = ApiFilter()
        api_filter.add_filter("trusted_certificate_id", "eq", my_cert)

        for device_denial in pelion_dm_sdk.foundation.device_enrollment_denial(
        ).list(filter=api_filter):
            print("Device endpoint name: %s" % device_denial.endpoint_name)
        # end of example

        new_status = my_cert.read().status
        self.assertEqual(TrustedCertificateStatusEnum.INACTIVE, new_status,
                         "Status should have been set to disabled")

        # Revert the certificate to its original status
        my_cert.status = original_status
        my_cert.update()

        end_status = my_cert.read().status
        self.assertEqual(
            original_status, end_status,
            "Status should have been reverted back to its original value")
示例#11
0
def create_foundation_sdk_instance():
    """Create an instance of a Foundation SDK Entity"""
    instance = LockedInstance(
        lock=threading.Lock(),
        instance=SDK(**(request.get_json() or {})),
        module=None,
        entity=SDK_ENTITY_NAME,
        uuid=str(uuid.uuid4().hex),
        created_at=datetime.datetime.utcnow(),
    )
    STORE[instance.uuid] = instance
    response = app.response_class(
        response=json.dumps(serialise_instance(instance)),
        status=201,
        mimetype='application/json'
    )
    return response
    def test_crud_of_an_entity(self):
        """Example of create, read, update and delete of a user"""
        from mbed_cloud import SDK

        pelion_dm_sdk = SDK()

        num_users = len(pelion_dm_sdk.foundation.user().list())

        # Keep the example at the same indent level so the documentation looks sensible
        try:
            # an example: create an entity
            new_user = pelion_dm_sdk.foundation.user(
                email="*****@*****.**", )
            new_user.create()
            # end of example

            self.assertEqual(len(User().list()), num_users + 1,
                             "The number of users should have increase")
            user_id = new_user.id

            # an example: read an entity
            user_one = pelion_dm_sdk.foundation.user(id=user_id).read()
            print("User email address: %s" % user_one.email)
            # end of example

            # an example: update an entity
            user_two = pelion_dm_sdk.foundation.user(id=user_id).read()
            user_two.full_name = "Python SDK User"
            user_two.update()
            # end of example

            self.assertEqual(user_two.read().full_name, "Python SDK User",
                             "User name should have been changed")

            # an example: delete an entity
            pelion_dm_sdk.foundation.user(id=user_id).delete()
            # end of example

        except Exception:
            new_user.delete()
        self.assertEqual(
            len(User().list()), num_users,
            "The number of users should be back to it's original value")
示例#13
0
 def get_user(self, **kwargs):
     sdk = SDK()
     u = User(**kwargs)
     u._client = sdk.client
     return u
示例#14
0
 def get_user(self, **kwargs):
     sdk = SDK()
     return User(_client=sdk.client, **kwargs)
示例#15
0
 def setUpClass(cls):
     cls.client = SDK().client
示例#16
0
 def get_user(self, **kwargs):
     sdk = SDK()
     return sdk.foundation.user(**kwargs)
示例#17
0
 def setUpClass(cls):
     cls.sdk = SDK()