iotagent-node-lib 2.15.1 → 2.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +17 -1
- package/.readthedocs.yml +7 -0
- package/CHANGES_NEXT_RELEASE +0 -1
- package/README.md +1 -0
- package/doc/Contribution.md +60 -1
- package/doc/advanced-topics.md +136 -14
- package/doc/api.md +38 -22
- package/doc/apiary/iotagent.apib +1 -3
- package/doc/architecture.md +2 -2
- package/doc/config-basic-example.js +0 -1
- package/doc/deprecated.md +2 -2
- package/doc/development.md +13 -6
- package/doc/expressionLanguage.md +519 -277
- package/doc/getting-started.md +0 -1
- package/doc/howto.md +13 -17
- package/doc/installationguide.md +67 -69
- package/doc/usermanual.md +48 -16
- package/docker/Mosquitto/Dockerfile +4 -9
- package/docker/Mosquitto/README.md +2 -0
- package/docker/Mosquitto/startMosquitto.sh +18 -1
- package/lib/command/commandLine.js +1 -1
- package/lib/commonConfig.js +5 -14
- package/lib/errors.js +0 -16
- package/lib/fiware-iotagent-lib.js +5 -0
- package/lib/jexlTranformsMap.js +71 -0
- package/lib/model/Command.js +1 -1
- package/lib/model/Device.js +5 -2
- package/lib/model/Group.js +20 -2
- package/lib/model/dbConn.js +7 -1
- package/lib/plugins/attributeAlias.js +6 -13
- package/lib/plugins/bidirectionalData.js +2 -27
- package/lib/plugins/expressionParser.js +41 -17
- package/lib/plugins/expressionPlugin.js +21 -27
- package/lib/plugins/jexlParser.js +71 -67
- package/lib/plugins/multiEntity.js +68 -147
- package/lib/plugins/pluginUtils.js +12 -48
- package/lib/plugins/timestampProcessPlugin.js +1 -46
- package/lib/request-shim.js +111 -0
- package/lib/services/common/domain.js +2 -2
- package/lib/services/common/genericMiddleware.js +6 -2
- package/lib/services/common/iotManagerService.js +1 -1
- package/lib/services/common/securityServiceKeystone.js +1 -1
- package/lib/services/common/securityServiceOAuth2.js +3 -2
- package/lib/services/devices/deviceRegistryMongoDB.js +29 -22
- package/lib/services/devices/deviceService.js +56 -33
- package/lib/services/devices/devices-NGSI-LD.js +42 -14
- package/lib/services/devices/devices-NGSI-mixed.js +3 -3
- package/lib/services/devices/devices-NGSI-v2.js +48 -24
- package/lib/services/devices/registrationUtils.js +1 -134
- package/lib/services/groups/groupRegistryMemory.js +2 -0
- package/lib/services/groups/groupRegistryMongoDB.js +58 -76
- package/lib/services/groups/groupService.js +1 -1
- package/lib/services/ngsi/entities-NGSI-LD.js +205 -124
- package/lib/services/ngsi/entities-NGSI-v2.js +142 -32
- package/lib/services/ngsi/ngsiService.js +4 -6
- package/lib/services/ngsi/ngsiUtils.js +0 -21
- package/lib/services/ngsi/subscription-NGSI-LD.js +14 -5
- package/lib/services/ngsi/subscriptionService.js +1 -4
- package/lib/services/northBound/contextServer-NGSI-LD.js +7 -2
- package/lib/services/northBound/contextServer-NGSI-v2.js +25 -13
- package/lib/services/northBound/contextServer.js +1 -4
- package/lib/services/northBound/contextServerUtils.js +0 -81
- package/lib/services/northBound/deviceProvisioningServer.js +36 -9
- package/lib/services/northBound/northboundServer.js +2 -0
- package/lib/services/northBound/restUtils.js +2 -39
- package/lib/templates/updateDevice.json +4 -0
- package/lib/templates/updateDeviceLax.json +4 -0
- package/package.json +13 -13
- package/test/tools/utils.js +2 -0
- package/test/unit/examples/deviceProvisioningRequests/provisionAnotherDevice.json +1 -1
- package/test/unit/examples/deviceProvisioningRequests/provisionDeviceMissingParameters.json +1 -1
- package/test/unit/examples/deviceProvisioningRequests/provisionDuplicatedDev.json +1 -1
- package/test/unit/examples/deviceProvisioningRequests/provisionFullDevice.json +1 -1
- package/test/unit/examples/deviceProvisioningRequests/provisionNewDeviceMalformed1.json +1 -1
- package/test/unit/examples/groupProvisioningRequests/multipleGroupsCreation.json +1 -1
- package/test/unit/examples/iotamRequests/registrationEmpty.json +1 -1
- package/test/unit/examples/iotamRequests/registrationWithGroups.json +2 -2
- package/test/unit/examples/iotamRequests/registrationWithGroupsWithoutCB.json +2 -2
- package/test/unit/examples/iotamRequests/registrationWithStaticGroups.json +2 -2
- package/test/unit/expressions/jexlExpression-test.js +119 -0
- package/test/unit/general/config-multi-core-test.js +1 -1
- package/test/unit/general/contextBrokerKeystoneSecurityAccess-test.js +30 -77
- package/test/unit/general/deviceService-test.js +19 -35
- package/test/unit/general/loglevel-api_test.js +8 -13
- package/test/unit/general/migration-test.js +1 -0
- package/test/unit/general/startup-test.js +3 -2
- package/test/unit/general/statistics-persistence_test.js +2 -2
- package/test/unit/general/statistics-service_test.js +2 -2
- package/test/unit/lazyAndCommands/commandRegistry_test.js +18 -18
- package/test/unit/memoryRegistry/deviceRegistryMemory_test.js +16 -24
- package/test/unit/mongodb/mongodb-connectionoptions-test.js +2 -2
- package/test/unit/mongodb/mongodb-group-registry-test.js +11 -11
- package/test/unit/mongodb/mongodb-registry-test.js +55 -131
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerIoTAgent1.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerIoTAgent2.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerIoTAgent4.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerIoTAgentCommands.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerProvisionedDevice.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerProvisionedDevice2.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup2.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup3.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/updateCommands1.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/updateIoTAgent1.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/updateIoTAgent2.json +1 -1
- package/test/unit/ngsi-ld/examples/contextAvailabilityRequests/updateIoTAgent3.json +1 -1
- package/test/unit/ngsi-ld/examples/contextRequests/createMinimumProvisionedDevice.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/createProvisionedDevice.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/createProvisionedDeviceMultientity.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/createProvisionedDeviceWithGroupAndStatic.json +0 -14
- package/test/unit/ngsi-ld/examples/contextRequests/createProvisionedDeviceWithGroupAndStatic2.json +0 -14
- package/test/unit/ngsi-ld/examples/contextRequests/createProvisionedDeviceWithGroupAndStatic3.json +1 -15
- package/test/unit/ngsi-ld/examples/contextRequests/createTimeInstantMinimumDevice.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextAliasPlugin6.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextAutocast5.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin12a.json +7 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin13.json +13 -13
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin16.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin17.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin1a.json +18 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin29.json +18 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin31.json +15 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin32.json +17 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin33.json +18 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin34.json +17 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin4a.json +36 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin5.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin7.json +16 -16
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin8a.json +18 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextGeoproperties3.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextMultientityPlugin15.json +25 -0
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextMultientityTimestampPlugin1.json +6 -6
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextMultientityTimestampPlugin2.json +3 -3
- package/test/unit/ngsi-ld/examples/contextRequests/updateProvisionActiveAttributes1.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateProvisionCommands1.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateProvisionDeviceStatic.json +0 -7
- package/test/unit/ngsi-ld/examples/contextRequests/updateProvisionMinimumDevice.json +0 -7
- package/test/unit/ngsi-ld/examples/subscriptionRequests/bidirectionalSubscriptionRequest.json +20 -17
- package/test/unit/ngsi-ld/examples/subscriptionRequests/simpleSubscriptionRequest.json +18 -15
- package/test/unit/ngsi-ld/examples/subscriptionRequests/simpleSubscriptionRequest2.json +18 -15
- package/test/unit/ngsi-ld/expressions/expressionBasedTransformations-test.js +21 -21
- package/test/unit/ngsi-ld/expressions/jexlBasedTransformations-test.js +1018 -0
- package/test/unit/ngsi-ld/general/config-jsonld-contexts-test.js +2 -2
- package/test/unit/ngsi-ld/general/contextBrokerOAuthSecurityAccess-test.js +24 -24
- package/test/unit/ngsi-ld/general/deviceService-test.js +7 -7
- package/test/unit/ngsi-ld/general/https-support-test.js +14 -13
- package/test/unit/ngsi-ld/general/iotam-autoregistration-test.js +8 -7
- package/test/unit/ngsi-ld/general/startup-test.js +2 -1
- package/test/unit/ngsi-ld/lazyAndCommands/active-devices-attribute-update-test.js +10 -8
- package/test/unit/ngsi-ld/lazyAndCommands/command-test.js +11 -12
- package/test/unit/ngsi-ld/lazyAndCommands/lazy-devices-test.js +25 -29
- package/test/unit/ngsi-ld/lazyAndCommands/polling-commands-test.js +16 -15
- package/test/unit/ngsi-ld/ngsiService/active-devices-test.js +18 -17
- package/test/unit/ngsi-ld/ngsiService/autocast-test.js +13 -12
- package/test/unit/ngsi-ld/ngsiService/geoproperties-test.js +10 -9
- package/test/unit/ngsi-ld/ngsiService/staticAttributes-test.js +3 -3
- package/test/unit/ngsi-ld/ngsiService/subscriptions-test.js +25 -24
- package/test/unit/ngsi-ld/plugins/alias-plugin_test.js +13 -12
- package/test/unit/ngsi-ld/plugins/bidirectional-plugin_test.js +27 -26
- package/test/unit/ngsi-ld/plugins/compress-timestamp-plugin_test.js +5 -5
- package/test/unit/ngsi-ld/plugins/event-plugin_test.js +3 -3
- package/test/unit/ngsi-ld/plugins/multientity-plugin_test.js +75 -14
- package/test/unit/ngsi-ld/plugins/timestamp-processing-plugin_test.js +3 -3
- package/test/unit/ngsi-ld/provisioning/device-provisioning-api_test.js +54 -53
- package/test/unit/ngsi-ld/provisioning/device-registration_test.js +20 -19
- package/test/unit/ngsi-ld/provisioning/device-update-registration_test.js +23 -22
- package/test/unit/ngsi-ld/provisioning/listProvisionedDevices-test.js +58 -70
- package/test/unit/ngsi-ld/provisioning/provisionDeviceMultientity-test.js +8 -7
- package/test/unit/ngsi-ld/provisioning/removeProvisionedDevice-test.js +19 -19
- package/test/unit/ngsi-ld/provisioning/singleConfigurationMode-test.js +18 -20
- package/test/unit/ngsi-ld/provisioning/updateProvisionedDevices-test.js +43 -49
- package/test/unit/ngsi-mixed/provisioning/ngsi-versioning-test.js +16 -14
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent1.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent2.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent3.json +19 -0
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent4.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent5.json +19 -0
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgentCommands.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerProvisionedDevice.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerProvisionedDevice2.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup2.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup3.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/updateCommands1.json +3 -3
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/updateIoTAgent1.json +3 -3
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/updateIoTAgent2.json +1 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/updateIoTAgent3.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin1.json +17 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin11.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin12.json +2 -2
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin15.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin16.json +14 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin17.json +14 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin18.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin19.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin2.json +13 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin20.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin21.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin22.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin23.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin24.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin25.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin26.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin27.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin28.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin29.json +22 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin3.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin30.json +6 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin31.json +18 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin32.json +16 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin33.json +22 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json +12 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin4.json +12 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin5.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin6.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin7.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin8.json +17 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin9.json +5 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMiddleware1.json +10 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMiddleware2.json +10 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin1.json +2 -2
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin10.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin11.json +13 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin12.json +33 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin13.json +33 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin14.json +33 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin15.json +25 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin16.json +25 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin2.json +2 -2
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin3.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin4.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin5.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin6.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin7.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin8.json +2 -2
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityPlugin9.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityTimestampPlugin1.json +8 -8
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityTimestampPlugin2.json +4 -4
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityTimestampPlugin3.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityTimestampPlugin4.json +2 -2
- package/test/unit/ngsiv2/examples/contextRequests/updateProvisionDevice.json +20 -0
- package/test/unit/ngsiv2/examples/subscriptionRequests/bidirectionalSubscriptionRequest.json +1 -1
- package/test/unit/ngsiv2/examples/subscriptionRequests/simpleSubscriptionRequest.json +1 -1
- package/test/unit/ngsiv2/examples/subscriptionRequests/simpleSubscriptionRequest2.json +1 -1
- package/test/unit/ngsiv2/expressions/expressionBasedTransformations-test.js +93 -60
- package/test/unit/ngsiv2/expressions/expressionCombinedTransformations-test.js +16 -16
- package/test/unit/ngsiv2/expressions/jexlBasedTransformations-test.js +548 -164
- package/test/unit/ngsiv2/general/contextBrokerOAuthSecurityAccess-test.js +34 -33
- package/test/unit/ngsiv2/general/deviceService-test.js +15 -14
- package/test/unit/ngsiv2/general/https-support-test.js +14 -13
- package/test/unit/ngsiv2/general/iotam-autoregistration-test.js +8 -7
- package/test/unit/ngsiv2/general/startup-test.js +2 -1
- package/test/unit/ngsiv2/lazyAndCommands/active-devices-attribute-update-test.js +9 -7
- package/test/unit/ngsiv2/lazyAndCommands/command-test.js +13 -12
- package/test/unit/ngsiv2/lazyAndCommands/lazy-devices-test.js +323 -51
- package/test/unit/ngsiv2/lazyAndCommands/polling-commands-test.js +22 -20
- package/test/unit/ngsiv2/ngsiService/active-devices-test.js +114 -26
- package/test/unit/ngsiv2/ngsiService/autocast-test.js +16 -16
- package/test/unit/ngsiv2/ngsiService/geoproperties-test.js +39 -38
- package/test/unit/{ngsiService → ngsiv2/ngsiService}/queryDeviceInformationInCb-test.js +25 -54
- package/test/unit/ngsiv2/ngsiService/staticAttributes-test.js +5 -5
- package/test/unit/ngsiv2/ngsiService/subscriptions-test.js +25 -24
- package/test/unit/ngsiv2/plugins/alias-plugin_test.js +22 -22
- package/test/unit/ngsiv2/plugins/bidirectional-plugin_test.js +27 -26
- package/test/unit/ngsiv2/plugins/compress-timestamp-plugin_test.js +7 -7
- package/test/unit/ngsiv2/plugins/event-plugin_test.js +4 -4
- package/test/unit/ngsiv2/plugins/multientity-plugin_test.js +549 -24
- package/test/unit/ngsiv2/plugins/timestamp-processing-plugin_test.js +4 -4
- package/test/unit/{plugins → ngsiv2/plugins}/translation-inPlugins_test.js +25 -25
- package/test/unit/{provisioning → ngsiv2/provisioning}/device-group-api-test.js +44 -75
- package/test/unit/{provisioning/device-group-utils_test.js → ngsiv2/provisioning/device-group-utils-test.js} +15 -14
- package/test/unit/ngsiv2/provisioning/device-provisioning-api_test.js +74 -73
- package/test/unit/ngsiv2/provisioning/device-registration_test.js +20 -19
- package/test/unit/ngsiv2/provisioning/device-update-registration_test.js +30 -29
- package/test/unit/ngsiv2/provisioning/listProvisionedDevices-test.js +58 -69
- package/test/unit/ngsiv2/provisioning/provisionDeviceMultientity-test.js +8 -7
- package/test/unit/ngsiv2/provisioning/removeProvisionedDevice-test.js +19 -19
- package/test/unit/ngsiv2/provisioning/singleConfigurationMode-test.js +18 -19
- package/test/unit/ngsiv2/provisioning/updateProvisionedDevices-test.js +49 -52
- package/test/unit/plugins/capture-configuration-inPlugins_test.js +6 -4
- package/test/unit/plugins/capture-provision-inPlugins_test.js +13 -23
- package/.nyc_output/016aca19-69bf-4681-9b41-2835c5131681.json +0 -1
- package/.nyc_output/processinfo/016aca19-69bf-4681-9b41-2835c5131681.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/lib/services/devices/devices-NGSI-v1.js +0 -293
- package/lib/services/devices/registrationUtils.js_avega +0 -589
- package/lib/services/ngsi/entities-NGSI-v1.js +0 -300
- package/lib/services/ngsi/subscription-NGSI-v1.js +0 -234
- package/lib/services/northBound/contextServer-NGSI-v1.js +0 -526
- package/lib/templates/notificationTemplateNgsi1.json +0 -75
- package/lib/templates/updateContextNgsi1.json +0 -50
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgent1.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgent2.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgent3.json +0 -25
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgent4.json +0 -22
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgentAttributeUpdates.json +0 -16
- package/test/unit/examples/contextAvailabilityRequests/registerIoTAgentCommands.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerNewDevice1.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerNewDevice2.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerProvisionedDevice.json +0 -25
- package/test/unit/examples/contextAvailabilityRequests/registerProvisionedDevice2.json +0 -21
- package/test/unit/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup.json +0 -33
- package/test/unit/examples/contextAvailabilityRequests/registerProvisionedDeviceWithGroup2.json +0 -33
- package/test/unit/examples/contextAvailabilityRequests/unregisterDevice1.json +0 -22
- package/test/unit/examples/contextAvailabilityRequests/unregisterDevice3.json +0 -26
- package/test/unit/examples/contextAvailabilityRequests/unregisterProvisionedDevice.json +0 -26
- package/test/unit/examples/contextAvailabilityRequests/updateCommands1.json +0 -22
- package/test/unit/examples/contextAvailabilityRequests/updateIoTAgent1.json +0 -22
- package/test/unit/examples/contextAvailabilityRequests/updateIoTAgent2.json +0 -26
- package/test/unit/examples/contextAvailabilityRequests/updateIoTAgent3.json +0 -22
- package/test/unit/examples/contextAvailabilityResponses/registerIoTAgent1Failed.json +0 -8
- package/test/unit/examples/contextAvailabilityResponses/registerIoTAgent1Success.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/registerNewDevice1Success.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/registerNewDevice2Success.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/registerProvisionedDeviceSuccess.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/unregisterDevice1Failed.json +0 -8
- package/test/unit/examples/contextAvailabilityResponses/unregisterDevice1Success.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/updateCommands1Success.json +0 -4
- package/test/unit/examples/contextAvailabilityResponses/updateIoTAgent1Success.json +0 -6
- package/test/unit/examples/contextProviderResponses/queryInformationResponse.json +0 -22
- package/test/unit/examples/contextProviderResponses/queryInformationResponseEmptyAttributes.json +0 -22
- package/test/unit/examples/contextProviderResponses/queryInformationStaticAttributesResponse.json +0 -27
- package/test/unit/examples/contextProviderResponses/updateInformationResponse.json +0 -22
- package/test/unit/examples/contextProviderResponses/updateInformationResponse2.json +0 -22
- package/test/unit/examples/contextRequests/contextSubscriptionRequest.json +0 -20
- package/test/unit/examples/contextRequests/contextSubscriptionRequest2.json +0 -20
- package/test/unit/examples/contextRequests/createBidirectionalDevice.json +0 -17
- package/test/unit/examples/contextRequests/createDatetimeProvisionedDevice.json +0 -17
- package/test/unit/examples/contextRequests/createGeopointProvisionedDevice.json +0 -17
- package/test/unit/examples/contextRequests/createMinimumProvisionedDevice.json +0 -17
- package/test/unit/examples/contextRequests/createProvisionedDevice.json +0 -32
- package/test/unit/examples/contextRequests/createProvisionedDeviceMultientity.json +0 -32
- package/test/unit/examples/contextRequests/createProvisionedDeviceWithGroup.json +0 -47
- package/test/unit/examples/contextRequests/createProvisionedDeviceWithGroupAndStatic.json +0 -52
- package/test/unit/examples/contextRequests/createProvisionedDeviceWithGroupAndStatic2.json +0 -52
- package/test/unit/examples/contextRequests/createTimeinstantDevice.json +0 -17
- package/test/unit/examples/contextRequests/queryContext1.json +0 -13
- package/test/unit/examples/contextRequests/queryContext2.json +0 -13
- package/test/unit/examples/contextRequests/queryContextAliasPlugin1.json +0 -10
- package/test/unit/examples/contextRequests/queryContextCompressTimestamp1.json +0 -13
- package/test/unit/examples/contextRequests/updateActiveAttributes.json +0 -11
- package/test/unit/examples/contextRequests/updateContext1.json +0 -22
- package/test/unit/examples/contextRequests/updateContext2.json +0 -22
- package/test/unit/examples/contextRequests/updateContext3.json +0 -17
- package/test/unit/examples/contextRequests/updateContext3WithStatic.json +0 -22
- package/test/unit/examples/contextRequests/updateContext4.json +0 -22
- package/test/unit/examples/contextRequests/updateContext5.json +0 -19
- package/test/unit/examples/contextRequests/updateContextAliasPlugin.json +0 -22
- package/test/unit/examples/contextRequests/updateContextAliasPlugin2.json +0 -17
- package/test/unit/examples/contextRequests/updateContextAppendMode.json +0 -22
- package/test/unit/examples/contextRequests/updateContextCommandError.json +0 -22
- package/test/unit/examples/contextRequests/updateContextCommandExpired.json +0 -22
- package/test/unit/examples/contextRequests/updateContextCommandFinish.json +0 -22
- package/test/unit/examples/contextRequests/updateContextCommandStatus.json +0 -17
- package/test/unit/examples/contextRequests/updateContextCompressTimestamp1.json +0 -22
- package/test/unit/examples/contextRequests/updateContextCompressTimestamp2.json +0 -29
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin1.json +0 -17
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin2.json +0 -27
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin3.json +0 -17
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin4.json +0 -17
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin5.json +0 -27
- package/test/unit/examples/contextRequests/updateContextMiddleware1.json +0 -22
- package/test/unit/examples/contextRequests/updateContextMultiEntityPlugin3.json +0 -35
- package/test/unit/examples/contextRequests/updateContextMultientityPlugin1.json +0 -30
- package/test/unit/examples/contextRequests/updateContextMultientityPlugin2.json +0 -30
- package/test/unit/examples/contextRequests/updateContextProcessTimestamp1.json +0 -29
- package/test/unit/examples/contextRequests/updateContextStaticAttributes.json +0 -22
- package/test/unit/examples/contextRequests/updateContextTimestamp.json +0 -41
- package/test/unit/examples/contextRequests/updateContextTimestampOverride.json +0 -22
- package/test/unit/examples/contextRequests/updateContextTimestampOverrideWithoutMilis.json +0 -22
- package/test/unit/examples/contextRequests/updateContextTimestampTimezone.json +0 -41
- package/test/unit/examples/contextRequests/updateProvisionActiveAttributes1.json +0 -17
- package/test/unit/examples/contextRequests/updateProvisionCommands1.json +0 -27
- package/test/unit/examples/contextRequests/updateProvisionDeviceStatic.json +0 -38
- package/test/unit/examples/contextRequests/updateProvisionMinimumDevice.json +0 -17
- package/test/unit/examples/contextResponses/contextSubscriptionRequest2Success.json +0 -7
- package/test/unit/examples/contextResponses/contextSubscriptionRequestSuccess.json +0 -7
- package/test/unit/examples/contextResponses/createBidirectionalDeviceSuccess.json +0 -22
- package/test/unit/examples/contextResponses/createDatetimeProvisionedDeviceSuccess.json +0 -22
- package/test/unit/examples/contextResponses/createGeopointProvisionedDeviceSuccess.json +0 -22
- package/test/unit/examples/contextResponses/createProvisionedDeviceSuccess.json +0 -22
- package/test/unit/examples/contextResponses/createTimeinstantSuccess.json +0 -22
- package/test/unit/examples/contextResponses/queryContext1Success.json +0 -27
- package/test/unit/examples/contextResponses/queryContext2Error.json +0 -7
- package/test/unit/examples/contextResponses/queryContext2UnknownError.json +0 -6
- package/test/unit/examples/contextResponses/queryContext3Error.json +0 -34
- package/test/unit/examples/contextResponses/queryContextAliasPlugin1Success.json +0 -27
- package/test/unit/examples/contextResponses/queryContextCompressTimestamp1Success.json +0 -27
- package/test/unit/examples/contextResponses/updateActiveAttributesSuccess.json +0 -16
- package/test/unit/examples/contextResponses/updateContext1Failed.json +0 -7
- package/test/unit/examples/contextResponses/updateContext1Success.json +0 -27
- package/test/unit/examples/contextResponses/updateContext2Failed.json +0 -35
- package/test/unit/examples/contextResponses/updateContextAliasPlugin2Success.json +0 -27
- package/test/unit/examples/contextResponses/updateContextAliasPluginSuccess.json +0 -27
- package/test/unit/examples/contextResponses/updateContextCommandFinishSuccess.json +0 -27
- package/test/unit/examples/contextResponses/updateContextCommandStatusSuccess.json +0 -22
- package/test/unit/examples/contextResponses/updateContextCompressTimestamp1Success.json +0 -27
- package/test/unit/examples/contextResponses/updateContextCompressTimestamp2Success.json +0 -34
- package/test/unit/examples/contextResponses/updateContextEvents1Success.json +0 -27
- package/test/unit/examples/contextResponses/updateContextExpressionPlugin1Success.json +0 -22
- package/test/unit/examples/contextResponses/updateContextExpressionPlugin2Success.json +0 -22
- package/test/unit/examples/contextResponses/updateContextExpressionPlugin3Success.json +0 -22
- package/test/unit/examples/contextResponses/updateContextExpressionPlugin5Success.json +0 -32
- package/test/unit/examples/contextResponses/updateContextMultientityPlugin1Success.json +0 -40
- package/test/unit/examples/contextResponses/updateContextMultientityPlugin2Success.json +0 -40
- package/test/unit/examples/contextResponses/updateContextMultientityPlugin3Success.json +0 -40
- package/test/unit/examples/contextResponses/updateContextProcessTimestamp1Success.json +0 -27
- package/test/unit/examples/contextResponses/updateProvisionActiveAttributes1Success.json +0 -22
- package/test/unit/examples/contextResponses/updateProvisionCommands1Success.json +0 -32
- package/test/unit/examples/contextResponses/updateProvisionMinimumDeviceSuccess.json +0 -22
- package/test/unit/examples/subscriptionRequests/bidirectionalNotification.json +0 -24
- package/test/unit/examples/subscriptionRequests/bidirectionalSubscriptionRemove.json +0 -3
- package/test/unit/examples/subscriptionRequests/bidirectionalSubscriptionRequest.json +0 -22
- package/test/unit/examples/subscriptionRequests/errorNotification.json +0 -24
- package/test/unit/examples/subscriptionRequests/simpleNotification.json +0 -24
- package/test/unit/examples/subscriptionRequests/simpleSubscriptionRemove.json +0 -3
- package/test/unit/examples/subscriptionRequests/simpleSubscriptionRequest.json +0 -19
- package/test/unit/examples/subscriptionRequests/simpleSubscriptionRequest1.json +0 -19
- package/test/unit/examples/subscriptionResponses/bidirectionalSubscriptionSuccess.json +0 -6
- package/test/unit/examples/subscriptionResponses/simpleSubscriptionSuccess.json +0 -6
- package/test/unit/expressions/expressionBasedTransformations-test.js +0 -328
- package/test/unit/expressions/expressionCombinedTransformations-test.js +0 -306
- package/test/unit/expressions/jexlBasedTransformations-test.js +0 -334
- package/test/unit/general/contextBrokerOAuthSecurityAccess-test.js +0 -902
- package/test/unit/general/https-support-test.js +0 -286
- package/test/unit/general/iotam-autoregistration-test.js +0 -368
- package/test/unit/lazyAndCommands/active-devices-attribute-update-test.js +0 -168
- package/test/unit/lazyAndCommands/command-test.js +0 -341
- package/test/unit/lazyAndCommands/lazy-devices-test.js +0 -878
- package/test/unit/lazyAndCommands/polling-commands-test.js +0 -421
- package/test/unit/ngsi-ld/examples/contextRequests/updateContextExpressionPlugin20.json +0 -25
- package/test/unit/ngsiService/active-devices-test.js +0 -692
- package/test/unit/ngsiService/staticAttributes-test.js +0 -148
- package/test/unit/ngsiService/subscriptions-test.js +0 -345
- package/test/unit/plugins/alias-plugin_test.js +0 -158
- package/test/unit/plugins/bidirectional-plugin_test.js +0 -564
- package/test/unit/plugins/compress-timestamp-plugin_test.js +0 -257
- package/test/unit/plugins/event-plugin_test.js +0 -119
- package/test/unit/plugins/multientity-plugin_test.js +0 -248
- package/test/unit/plugins/timestamp-processing-plugin_test.js +0 -119
- package/test/unit/provisioning/device-provisioning-api_test.js +0 -748
- package/test/unit/provisioning/device-registration_test.js +0 -432
- package/test/unit/provisioning/device-update-registration_test.js +0 -326
- package/test/unit/provisioning/listProvisionedDevices-test.js +0 -488
- package/test/unit/provisioning/provisionDeviceMultientity-test.js +0 -123
- package/test/unit/provisioning/removeProvisionedDevice-test.js +0 -244
- package/test/unit/provisioning/singleConfigurationMode-test.js +0 -346
- package/test/unit/provisioning/updateProvisionedDevices-test.js +0 -436
|
@@ -27,9 +27,10 @@
|
|
|
27
27
|
|
|
28
28
|
const iotAgentLib = require('../../../../lib/fiware-iotagent-lib');
|
|
29
29
|
const utils = require('../../../tools/utils');
|
|
30
|
+
const request = utils.request;
|
|
30
31
|
const should = require('should');
|
|
31
32
|
const nock = require('nock');
|
|
32
|
-
|
|
33
|
+
|
|
33
34
|
const moment = require('moment');
|
|
34
35
|
let contextBrokerMock;
|
|
35
36
|
const iotAgentConfig = {
|
|
@@ -44,9 +45,9 @@ const iotAgentConfig = {
|
|
|
44
45
|
baseRoot: '/'
|
|
45
46
|
},
|
|
46
47
|
types: {},
|
|
47
|
-
service: '
|
|
48
|
+
service: 'smartgondor',
|
|
48
49
|
subservice: 'gardens',
|
|
49
|
-
providerUrl: 'http://
|
|
50
|
+
providerUrl: 'http://smartgondor.com',
|
|
50
51
|
explicitAttrs: false
|
|
51
52
|
};
|
|
52
53
|
|
|
@@ -56,7 +57,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
56
57
|
|
|
57
58
|
iotAgentLib.activate(iotAgentConfig, function () {
|
|
58
59
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
59
|
-
.matchHeader('fiware-service', '
|
|
60
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
60
61
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
61
62
|
.post(
|
|
62
63
|
'/v2/registrations',
|
|
@@ -70,7 +71,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
70
71
|
// device provisioning functionality. Appropriate verification is done in tests under
|
|
71
72
|
// provisioning folder
|
|
72
73
|
contextBrokerMock
|
|
73
|
-
.matchHeader('fiware-service', '
|
|
74
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
74
75
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
75
76
|
.post('/v2/entities?options=upsert')
|
|
76
77
|
.reply(204);
|
|
@@ -89,7 +90,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
89
90
|
beforeEach(function () {
|
|
90
91
|
nock.cleanAll();
|
|
91
92
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
92
|
-
.matchHeader('fiware-service', '
|
|
93
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
93
94
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
94
95
|
.post(
|
|
95
96
|
'/v2/registrations',
|
|
@@ -100,7 +101,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
100
101
|
.reply(201, null, { Location: '/v2/registrations/6319a7f5254b05844116584d' });
|
|
101
102
|
|
|
102
103
|
contextBrokerMock
|
|
103
|
-
.matchHeader('fiware-service', '
|
|
104
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
104
105
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
105
106
|
.post(
|
|
106
107
|
'/v2/entities?options=upsert',
|
|
@@ -114,7 +115,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
114
115
|
method: 'POST',
|
|
115
116
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionNewDevice.json'),
|
|
116
117
|
headers: {
|
|
117
|
-
'fiware-service': '
|
|
118
|
+
'fiware-service': 'smartgondor',
|
|
118
119
|
'fiware-servicepath': '/gardens'
|
|
119
120
|
}
|
|
120
121
|
};
|
|
@@ -124,7 +125,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
124
125
|
should.not.exist(error);
|
|
125
126
|
response.statusCode.should.equal(201);
|
|
126
127
|
|
|
127
|
-
iotAgentLib.listDevices('
|
|
128
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
128
129
|
results.devices.length.should.equal(1);
|
|
129
130
|
done();
|
|
130
131
|
});
|
|
@@ -148,7 +149,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
148
149
|
it('should store the device with the provided entity id, name and type', function (done) {
|
|
149
150
|
request(options, function (error, response, body) {
|
|
150
151
|
response.statusCode.should.equal(201);
|
|
151
|
-
iotAgentLib.listDevices('
|
|
152
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
152
153
|
results.devices[0].id.should.equal('Light1');
|
|
153
154
|
results.devices[0].name.should.equal('TheFirstLight');
|
|
154
155
|
results.devices[0].type.should.equal('TheLightType');
|
|
@@ -159,7 +160,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
159
160
|
it('should store the device with the per device information', function (done) {
|
|
160
161
|
request(options, function (error, response, body) {
|
|
161
162
|
response.statusCode.should.equal(201);
|
|
162
|
-
iotAgentLib.listDevices('
|
|
163
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
163
164
|
should.exist(results.devices[0].timezone);
|
|
164
165
|
results.devices[0].timezone.should.equal('America/Santiago');
|
|
165
166
|
should.exist(results.devices[0].endpoint);
|
|
@@ -190,7 +191,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
190
191
|
/* jshint camelcase:false */
|
|
191
192
|
request(options, function (error, response, body) {
|
|
192
193
|
response.statusCode.should.equal(201);
|
|
193
|
-
iotAgentLib.listDevices('
|
|
194
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
194
195
|
results.devices[0].lazy[0].object_id.should.equal('luminance');
|
|
195
196
|
results.devices[0].commands[0].object_id.should.equal('commandAttr');
|
|
196
197
|
results.devices[0].active[0].object_id.should.equal('attr_name');
|
|
@@ -202,9 +203,9 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
202
203
|
it('should store service and subservice info from the headers along with the device data', function (done) {
|
|
203
204
|
request(options, function (error, response, body) {
|
|
204
205
|
response.statusCode.should.equal(201);
|
|
205
|
-
iotAgentLib.listDevices('
|
|
206
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
206
207
|
should.exist(results.devices[0].service);
|
|
207
|
-
results.devices[0].service.should.equal('
|
|
208
|
+
results.devices[0].service.should.equal('smartgondor');
|
|
208
209
|
should.exist(results.devices[0].subservice);
|
|
209
210
|
results.devices[0].subservice.should.equal('/gardens');
|
|
210
211
|
done();
|
|
@@ -215,7 +216,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
215
216
|
it('should create the initial entity in the Context Broker', function (done) {
|
|
216
217
|
request(options, function (error, response, body) {
|
|
217
218
|
response.statusCode.should.equal(201);
|
|
218
|
-
iotAgentLib.listDevices('
|
|
219
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
219
220
|
contextBrokerMock.done();
|
|
220
221
|
done();
|
|
221
222
|
});
|
|
@@ -228,7 +229,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
228
229
|
method: 'POST',
|
|
229
230
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionTimeInstant.json'),
|
|
230
231
|
headers: {
|
|
231
|
-
'fiware-service': '
|
|
232
|
+
'fiware-service': 'smartgondor',
|
|
232
233
|
'fiware-servicepath': '/gardens'
|
|
233
234
|
}
|
|
234
235
|
};
|
|
@@ -247,7 +248,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
247
248
|
beforeEach(function (done) {
|
|
248
249
|
nock.cleanAll();
|
|
249
250
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
250
|
-
.matchHeader('fiware-service', '
|
|
251
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
251
252
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
252
253
|
.post(
|
|
253
254
|
'/v2/entities?options=upsert',
|
|
@@ -272,7 +273,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
272
273
|
method: 'POST',
|
|
273
274
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionTimeInstant2.json'),
|
|
274
275
|
headers: {
|
|
275
|
-
'fiware-service': '
|
|
276
|
+
'fiware-service': 'smartgondor',
|
|
276
277
|
'fiware-servicepath': '/gardens'
|
|
277
278
|
}
|
|
278
279
|
};
|
|
@@ -291,7 +292,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
291
292
|
beforeEach(function (done) {
|
|
292
293
|
nock.cleanAll();
|
|
293
294
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
294
|
-
.matchHeader('fiware-service', '
|
|
295
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
295
296
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
296
297
|
.post(
|
|
297
298
|
'/v2/entities?options=upsert',
|
|
@@ -316,7 +317,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
316
317
|
method: 'POST',
|
|
317
318
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionExplicitAttrs.json'),
|
|
318
319
|
headers: {
|
|
319
|
-
'fiware-service': '
|
|
320
|
+
'fiware-service': 'smartgondor',
|
|
320
321
|
'fiware-servicepath': '/gardens'
|
|
321
322
|
}
|
|
322
323
|
};
|
|
@@ -335,7 +336,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
335
336
|
beforeEach(function (done) {
|
|
336
337
|
nock.cleanAll();
|
|
337
338
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
338
|
-
.matchHeader('fiware-service', '
|
|
339
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
339
340
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
340
341
|
.post(
|
|
341
342
|
'/v2/entities?options=upsert',
|
|
@@ -354,7 +355,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
354
355
|
});
|
|
355
356
|
it('should store the device with explicitAttrs:true device information', function (done) {
|
|
356
357
|
request(options, function (error, response, body) {
|
|
357
|
-
iotAgentLib.listDevices('
|
|
358
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
358
359
|
should.exist(results.devices[0].explicitAttrs);
|
|
359
360
|
results.devices[0].explicitAttrs.should.equal(true);
|
|
360
361
|
done();
|
|
@@ -374,7 +375,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
374
375
|
'./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'
|
|
375
376
|
),
|
|
376
377
|
headers: {
|
|
377
|
-
'fiware-service': '
|
|
378
|
+
'fiware-service': 'smartgondor',
|
|
378
379
|
'fiware-servicepath': '/gardens'
|
|
379
380
|
}
|
|
380
381
|
};
|
|
@@ -393,7 +394,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
393
394
|
beforeEach(function (done) {
|
|
394
395
|
nock.cleanAll();
|
|
395
396
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
396
|
-
.matchHeader('fiware-service', '
|
|
397
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
397
398
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
398
399
|
.post(
|
|
399
400
|
'/v2/entities?options=upsert',
|
|
@@ -414,7 +415,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
414
415
|
});
|
|
415
416
|
it('should store the device with explicitAttrs value provided in configuration', function (done) {
|
|
416
417
|
request(options, function (error, response, body) {
|
|
417
|
-
iotAgentLib.listDevices('
|
|
418
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
418
419
|
should.exist(results.devices[0].explicitAttrs);
|
|
419
420
|
results.devices[0].explicitAttrs.should.equal(false);
|
|
420
421
|
done();
|
|
@@ -435,7 +436,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
435
436
|
'./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'
|
|
436
437
|
),
|
|
437
438
|
headers: {
|
|
438
|
-
'fiware-service': '
|
|
439
|
+
'fiware-service': 'smartgondor',
|
|
439
440
|
'fiware-servicepath': '/gardens'
|
|
440
441
|
}
|
|
441
442
|
};
|
|
@@ -455,7 +456,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
455
456
|
]
|
|
456
457
|
},
|
|
457
458
|
headers: {
|
|
458
|
-
'fiware-service': '
|
|
459
|
+
'fiware-service': 'smartgondor',
|
|
459
460
|
'fiware-servicepath': '/gardens'
|
|
460
461
|
}
|
|
461
462
|
};
|
|
@@ -463,7 +464,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
463
464
|
beforeEach(function (done) {
|
|
464
465
|
nock.cleanAll();
|
|
465
466
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
466
|
-
.matchHeader('fiware-service', '
|
|
467
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
467
468
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
468
469
|
.post(
|
|
469
470
|
'/v2/entities?options=upsert',
|
|
@@ -479,7 +480,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
479
480
|
it('should store the device with explicitAttrs value provided in configuration', function (done) {
|
|
480
481
|
request(groupCreation, function (error, response, body) {
|
|
481
482
|
request(options, function (error, response, body) {
|
|
482
|
-
iotAgentLib.listDevices('
|
|
483
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
483
484
|
should.exist(results.devices[0].explicitAttrs);
|
|
484
485
|
results.devices[0].explicitAttrs.should.equal(true);
|
|
485
486
|
done();
|
|
@@ -501,7 +502,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
501
502
|
'./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'
|
|
502
503
|
),
|
|
503
504
|
headers: {
|
|
504
|
-
'fiware-service': '
|
|
505
|
+
'fiware-service': 'smartgondor',
|
|
505
506
|
'fiware-servicepath': '/gardens'
|
|
506
507
|
}
|
|
507
508
|
};
|
|
@@ -528,7 +529,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
528
529
|
]
|
|
529
530
|
},
|
|
530
531
|
headers: {
|
|
531
|
-
'fiware-service': '
|
|
532
|
+
'fiware-service': 'smartgondor',
|
|
532
533
|
'fiware-servicepath': '/gardens'
|
|
533
534
|
}
|
|
534
535
|
};
|
|
@@ -536,7 +537,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
536
537
|
beforeEach(function (done) {
|
|
537
538
|
nock.cleanAll();
|
|
538
539
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
539
|
-
.matchHeader('fiware-service', '
|
|
540
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
540
541
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
541
542
|
.post(
|
|
542
543
|
'/v2/entities?options=upsert',
|
|
@@ -553,7 +554,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
553
554
|
it('should store the device with static attributes provided in configuration', function (done) {
|
|
554
555
|
request(groupCreation, function (error, response, body) {
|
|
555
556
|
request(options, function (error, response, body) {
|
|
556
|
-
iotAgentLib.listDevices('
|
|
557
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
557
558
|
should.exist(results.devices[0].staticAttributes);
|
|
558
559
|
results.devices[0].staticAttributes[0].name.should.equal('bootstrapServer');
|
|
559
560
|
done();
|
|
@@ -574,7 +575,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
574
575
|
'./test/unit/examples/deviceProvisioningRequests/provisionStaticAttrsDevice.json'
|
|
575
576
|
),
|
|
576
577
|
headers: {
|
|
577
|
-
'fiware-service': '
|
|
578
|
+
'fiware-service': 'smartgondor',
|
|
578
579
|
'fiware-servicepath': '/gardens'
|
|
579
580
|
}
|
|
580
581
|
};
|
|
@@ -594,7 +595,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
594
595
|
]
|
|
595
596
|
},
|
|
596
597
|
headers: {
|
|
597
|
-
'fiware-service': '
|
|
598
|
+
'fiware-service': 'smartgondor',
|
|
598
599
|
'fiware-servicepath': '/gardens'
|
|
599
600
|
}
|
|
600
601
|
};
|
|
@@ -602,7 +603,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
602
603
|
beforeEach(function (done) {
|
|
603
604
|
nock.cleanAll();
|
|
604
605
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
605
|
-
.matchHeader('fiware-service', '
|
|
606
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
606
607
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
607
608
|
.post(
|
|
608
609
|
'/v2/entities?options=upsert',
|
|
@@ -619,7 +620,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
619
620
|
it('should store the device with static attributes provided in device', function (done) {
|
|
620
621
|
request(groupCreation, function (error, response, body) {
|
|
621
622
|
request(options, function (error, response, body) {
|
|
622
|
-
iotAgentLib.listDevices('
|
|
623
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
623
624
|
should.exist(results.devices[0].staticAttributes);
|
|
624
625
|
results.devices[0].staticAttributes[0].name.should.equal('bootstrapServer');
|
|
625
626
|
done();
|
|
@@ -641,7 +642,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
641
642
|
'./test/unit/examples/deviceProvisioningRequests/provisionStaticAttrsDevice2.json'
|
|
642
643
|
),
|
|
643
644
|
headers: {
|
|
644
|
-
'fiware-service': '
|
|
645
|
+
'fiware-service': 'smartgondor',
|
|
645
646
|
'fiware-servicepath': '/gardens'
|
|
646
647
|
}
|
|
647
648
|
};
|
|
@@ -668,7 +669,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
668
669
|
]
|
|
669
670
|
},
|
|
670
671
|
headers: {
|
|
671
|
-
'fiware-service': '
|
|
672
|
+
'fiware-service': 'smartgondor',
|
|
672
673
|
'fiware-servicepath': '/gardens'
|
|
673
674
|
}
|
|
674
675
|
};
|
|
@@ -676,7 +677,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
676
677
|
beforeEach(function (done) {
|
|
677
678
|
nock.cleanAll();
|
|
678
679
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
679
|
-
.matchHeader('fiware-service', '
|
|
680
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
680
681
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
681
682
|
.post(
|
|
682
683
|
'/v2/entities?options=upsert',
|
|
@@ -693,7 +694,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
693
694
|
it('should store the device with static attributes provided in configuration as well as device', function (done) {
|
|
694
695
|
request(groupCreation, function (error, response, body) {
|
|
695
696
|
request(options, function (error, response, body) {
|
|
696
|
-
iotAgentLib.listDevices('
|
|
697
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
697
698
|
should.exist(results.devices[0].staticAttributes);
|
|
698
699
|
results.devices[0].staticAttributes.length.should.equal(2);
|
|
699
700
|
done();
|
|
@@ -715,7 +716,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
715
716
|
'./test/unit/examples/deviceProvisioningRequests/provisionStaticAttrsDevice3.json'
|
|
716
717
|
),
|
|
717
718
|
headers: {
|
|
718
|
-
'fiware-service': '
|
|
719
|
+
'fiware-service': 'smartgondor',
|
|
719
720
|
'fiware-servicepath': '/gardens'
|
|
720
721
|
}
|
|
721
722
|
};
|
|
@@ -742,7 +743,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
742
743
|
]
|
|
743
744
|
},
|
|
744
745
|
headers: {
|
|
745
|
-
'fiware-service': '
|
|
746
|
+
'fiware-service': 'smartgondor',
|
|
746
747
|
'fiware-servicepath': '/gardens'
|
|
747
748
|
}
|
|
748
749
|
};
|
|
@@ -750,7 +751,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
750
751
|
beforeEach(function (done) {
|
|
751
752
|
nock.cleanAll();
|
|
752
753
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
753
|
-
.matchHeader('fiware-service', '
|
|
754
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
754
755
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
755
756
|
.post(
|
|
756
757
|
'/v2/entities?options=upsert',
|
|
@@ -767,7 +768,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
767
768
|
it('should store the device with static attributes provided in device', function (done) {
|
|
768
769
|
request(groupCreation, function (error, response, body) {
|
|
769
770
|
request(options, function (error, response, body) {
|
|
770
|
-
iotAgentLib.listDevices('
|
|
771
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
771
772
|
should.exist(results.devices[0].staticAttributes);
|
|
772
773
|
results.devices[0].staticAttributes[0].value.should.equal('127.0.0.2');
|
|
773
774
|
done();
|
|
@@ -784,7 +785,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
784
785
|
method: 'POST',
|
|
785
786
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionAutoprovision.json'),
|
|
786
787
|
headers: {
|
|
787
|
-
'fiware-service': '
|
|
788
|
+
'fiware-service': 'smartgondor',
|
|
788
789
|
'fiware-servicepath': '/gardens'
|
|
789
790
|
}
|
|
790
791
|
};
|
|
@@ -803,7 +804,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
803
804
|
beforeEach(function (done) {
|
|
804
805
|
nock.cleanAll();
|
|
805
806
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
806
|
-
.matchHeader('fiware-service', '
|
|
807
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
807
808
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
808
809
|
.post(
|
|
809
810
|
'/v2/entities?options=upsert',
|
|
@@ -827,7 +828,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
827
828
|
method: 'POST',
|
|
828
829
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'),
|
|
829
830
|
headers: {
|
|
830
|
-
'fiware-service': '
|
|
831
|
+
'fiware-service': 'smartgondor',
|
|
831
832
|
'fiware-servicepath': '/gardens'
|
|
832
833
|
}
|
|
833
834
|
};
|
|
@@ -846,7 +847,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
846
847
|
beforeEach(function (done) {
|
|
847
848
|
nock.cleanAll();
|
|
848
849
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
849
|
-
.matchHeader('fiware-service', '
|
|
850
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
850
851
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
851
852
|
.post('/v2/entities?options=upsert', function (body) {
|
|
852
853
|
const expectedBody = utils.readExampleFile(
|
|
@@ -886,7 +887,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
886
887
|
method: 'POST',
|
|
887
888
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'),
|
|
888
889
|
headers: {
|
|
889
|
-
'fiware-service': '
|
|
890
|
+
'fiware-service': 'smartgondor',
|
|
890
891
|
'fiware-servicepath': '/gardens'
|
|
891
892
|
}
|
|
892
893
|
};
|
|
@@ -894,7 +895,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
894
895
|
beforeEach(function (done) {
|
|
895
896
|
nock.cleanAll();
|
|
896
897
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
897
|
-
.matchHeader('fiware-service', '
|
|
898
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
898
899
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
899
900
|
.post(
|
|
900
901
|
'/v2/entities?options=upsert',
|
|
@@ -919,7 +920,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
919
920
|
should.not.exist(error);
|
|
920
921
|
response.statusCode.should.equal(201);
|
|
921
922
|
|
|
922
|
-
iotAgentLib.listDevices('
|
|
923
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
923
924
|
results.devices.length.should.equal(1);
|
|
924
925
|
done();
|
|
925
926
|
});
|
|
@@ -929,7 +930,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
929
930
|
it('should store the device with the provided entity id, name and type', function (done) {
|
|
930
931
|
request(options, function (error, response, body) {
|
|
931
932
|
response.statusCode.should.equal(201);
|
|
932
|
-
iotAgentLib.listDevices('
|
|
933
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
933
934
|
results.devices[0].id.should.equal('MicroLight1');
|
|
934
935
|
results.devices[0].name.should.equal('FirstMicroLight');
|
|
935
936
|
results.devices[0].type.should.equal('MicroLights');
|
|
@@ -945,7 +946,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
945
946
|
method: 'POST',
|
|
946
947
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionGeopointDevice.json'),
|
|
947
948
|
headers: {
|
|
948
|
-
'fiware-service': '
|
|
949
|
+
'fiware-service': 'smartgondor',
|
|
949
950
|
'fiware-servicepath': '/gardens'
|
|
950
951
|
}
|
|
951
952
|
};
|
|
@@ -953,7 +954,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
953
954
|
beforeEach(function (done) {
|
|
954
955
|
nock.cleanAll();
|
|
955
956
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
956
|
-
.matchHeader('fiware-service', '
|
|
957
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
957
958
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
958
959
|
.post(
|
|
959
960
|
'/v2/entities?options=upsert',
|
|
@@ -980,7 +981,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
980
981
|
method: 'POST',
|
|
981
982
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionDatetimeDevice.json'),
|
|
982
983
|
headers: {
|
|
983
|
-
'fiware-service': '
|
|
984
|
+
'fiware-service': 'smartgondor',
|
|
984
985
|
'fiware-servicepath': '/gardens'
|
|
985
986
|
}
|
|
986
987
|
};
|
|
@@ -988,7 +989,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
988
989
|
beforeEach(function (done) {
|
|
989
990
|
nock.cleanAll();
|
|
990
991
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
991
|
-
.matchHeader('fiware-service', '
|
|
992
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
992
993
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
993
994
|
.post(
|
|
994
995
|
'/v2/entities?options=upsert',
|
|
@@ -1015,7 +1016,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1015
1016
|
method: 'POST',
|
|
1016
1017
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'),
|
|
1017
1018
|
headers: {
|
|
1018
|
-
'fiware-service': '
|
|
1019
|
+
'fiware-service': 'smartgondor',
|
|
1019
1020
|
'fiware-servicepath': '/gardens'
|
|
1020
1021
|
}
|
|
1021
1022
|
};
|
|
@@ -1066,7 +1067,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1066
1067
|
it('should show the new device in each list', function (done) {
|
|
1067
1068
|
request(options1, function (error, response, body) {
|
|
1068
1069
|
request(options2, function (error, response, body) {
|
|
1069
|
-
iotAgentLib.listDevices('
|
|
1070
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
1070
1071
|
results.devices.length.should.equal(1);
|
|
1071
1072
|
results.devices[0].id.should.equal('MicroLight1');
|
|
1072
1073
|
|
|
@@ -1087,7 +1088,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1087
1088
|
method: 'POST',
|
|
1088
1089
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'),
|
|
1089
1090
|
headers: {
|
|
1090
|
-
'fiware-service': '
|
|
1091
|
+
'fiware-service': 'smartgondor',
|
|
1091
1092
|
'fiware-servicepath': '/gardens'
|
|
1092
1093
|
}
|
|
1093
1094
|
};
|
|
@@ -1096,7 +1097,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1096
1097
|
nock.cleanAll();
|
|
1097
1098
|
|
|
1098
1099
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1099
|
-
.matchHeader('fiware-service', '
|
|
1100
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1100
1101
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1101
1102
|
.post('/v2/registrations')
|
|
1102
1103
|
.reply(201, null, { Location: '/v2/registrations/6319a7f5254b05844116584d' });
|
|
@@ -1105,7 +1106,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1105
1106
|
// device provisioning functionality. Appropriate verification is done in tests under
|
|
1106
1107
|
// provisioning folder
|
|
1107
1108
|
contextBrokerMock
|
|
1108
|
-
.matchHeader('fiware-service', '
|
|
1109
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1109
1110
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1110
1111
|
.post('/v2/entities?options=upsert')
|
|
1111
1112
|
.replyWithError({ message: 'Description of the error', code: 'STRING_CODE' });
|
|
@@ -1129,7 +1130,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1129
1130
|
method: 'POST',
|
|
1130
1131
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionMinimumDevice.json'),
|
|
1131
1132
|
headers: {
|
|
1132
|
-
'fiware-service': '
|
|
1133
|
+
'fiware-service': 'smartgondor',
|
|
1133
1134
|
'fiware-servicepath': '/gardens'
|
|
1134
1135
|
}
|
|
1135
1136
|
};
|
|
@@ -1138,7 +1139,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1138
1139
|
nock.cleanAll();
|
|
1139
1140
|
|
|
1140
1141
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1141
|
-
.matchHeader('fiware-service', '
|
|
1142
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1142
1143
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1143
1144
|
.post('/v2/registrations')
|
|
1144
1145
|
.reply(201, null, { Location: '/v2/registrations/6319a7f5254b05844116584d' });
|
|
@@ -1147,7 +1148,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1147
1148
|
// device provisioning functionality. Appropriate verification is done in tests under
|
|
1148
1149
|
// provisioning folder
|
|
1149
1150
|
contextBrokerMock
|
|
1150
|
-
.matchHeader('fiware-service', '
|
|
1151
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1151
1152
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1152
1153
|
.post('/v2/entities?options=upsert')
|
|
1153
1154
|
.replyWithError({ message: 'Description of the error', code: 123456789 });
|
|
@@ -1170,7 +1171,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1170
1171
|
url: 'http://localhost:' + iotAgentConfig.server.port + '/iot/devices',
|
|
1171
1172
|
method: 'POST',
|
|
1172
1173
|
headers: {
|
|
1173
|
-
'fiware-service': '
|
|
1174
|
+
'fiware-service': 'smartgondor',
|
|
1174
1175
|
'fiware-servicepath': '/gardens'
|
|
1175
1176
|
},
|
|
1176
1177
|
json: utils.readExampleFile(
|
|
@@ -1194,14 +1195,14 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1194
1195
|
method: 'POST',
|
|
1195
1196
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionNewDevice.json'),
|
|
1196
1197
|
headers: {
|
|
1197
|
-
'fiware-service': '
|
|
1198
|
+
'fiware-service': 'smartgondor',
|
|
1198
1199
|
'fiware-servicepath': '/gardens'
|
|
1199
1200
|
}
|
|
1200
1201
|
};
|
|
1201
1202
|
|
|
1202
1203
|
beforeEach(function (done) {
|
|
1203
1204
|
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1204
|
-
.matchHeader('fiware-service', '
|
|
1205
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1205
1206
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1206
1207
|
.post('/v2/registrations')
|
|
1207
1208
|
.reply(201, null, { Location: '/v2/registrations/6319a7f5254b05844116584d' });
|
|
@@ -1210,7 +1211,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1210
1211
|
// device provisioning functionality. Appropriate verification is done in tests under
|
|
1211
1212
|
// provisioning folder
|
|
1212
1213
|
contextBrokerMock
|
|
1213
|
-
.matchHeader('fiware-service', '
|
|
1214
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1214
1215
|
.matchHeader('fiware-servicepath', '/gardens')
|
|
1215
1216
|
.post('/v2/entities?options=upsert')
|
|
1216
1217
|
.reply(204);
|
|
@@ -1237,7 +1238,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1237
1238
|
'./test/unit/examples/deviceProvisioningRequests/provisionNewDeviceMalformed1.json'
|
|
1238
1239
|
),
|
|
1239
1240
|
headers: {
|
|
1240
|
-
'fiware-service': '
|
|
1241
|
+
'fiware-service': 'smartgondor',
|
|
1241
1242
|
'fiware-servicepath': '/gardens'
|
|
1242
1243
|
}
|
|
1243
1244
|
};
|
|
@@ -1258,7 +1259,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1258
1259
|
url: 'http://localhost:' + iotAgentConfig.server.port + '/newBaseRoot/iot/devices',
|
|
1259
1260
|
method: 'POST',
|
|
1260
1261
|
headers: {
|
|
1261
|
-
'fiware-service': '
|
|
1262
|
+
'fiware-service': 'smartgondor',
|
|
1262
1263
|
'fiware-servicepath': '/gardens'
|
|
1263
1264
|
},
|
|
1264
1265
|
json: utils.readExampleFile('./test/unit/examples/deviceProvisioningRequests/provisionNewDevice.json')
|
|
@@ -1280,7 +1281,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1280
1281
|
should.not.exist(error);
|
|
1281
1282
|
response.statusCode.should.equal(201);
|
|
1282
1283
|
|
|
1283
|
-
iotAgentLib.listDevices('
|
|
1284
|
+
iotAgentLib.listDevices('smartgondor', '/gardens', function (error, results) {
|
|
1284
1285
|
results.devices.length.should.equal(1);
|
|
1285
1286
|
done();
|
|
1286
1287
|
});
|
|
@@ -1310,7 +1311,7 @@ describe('NGSI-v2 - Device provisioning API: Provision devices', function () {
|
|
|
1310
1311
|
const options = {
|
|
1311
1312
|
url: 'http://localhost:' + iotAgentConfig.server.port + '/iot/devices/Light84',
|
|
1312
1313
|
headers: {
|
|
1313
|
-
'fiware-service': '
|
|
1314
|
+
'fiware-service': 'smartgondor',
|
|
1314
1315
|
'fiware-servicepath': '/gardens'
|
|
1315
1316
|
},
|
|
1316
1317
|
method: 'DELETE'
|