iotagent-node-lib 2.17.0 → 2.20.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 -2
- package/.nyc_output/76bc24ff-5fac-4b5a-997d-de2799342eb0.json +1 -0
- package/.nyc_output/processinfo/76bc24ff-5fac-4b5a-997d-de2799342eb0.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/CHANGES_NEXT_RELEASE +1 -0
- package/README.md +3 -54
- package/doc/advanced-topics.md +121 -85
- package/doc/api.md +52 -52
- package/doc/development.md +13 -6
- package/doc/expressionLanguage.md +514 -312
- package/doc/installationguide.md +66 -64
- package/doc/usermanual.md +48 -16
- package/docker/Mosquitto/Dockerfile +1 -0
- package/docker/Mosquitto/README.md +1 -0
- package/docker/Mosquitto/startMosquitto.sh +9 -4
- package/lib/commonConfig.js +1 -14
- package/lib/errors.js +0 -16
- package/lib/fiware-iotagent-lib.js +4 -2
- package/lib/jexlTranformsMap.js +13 -2
- package/lib/model/Device.js +4 -1
- package/lib/model/Group.js +19 -1
- package/lib/plugins/attributeAlias.js +6 -13
- package/lib/plugins/bidirectionalData.js +1 -21
- package/lib/plugins/expressionParser.js +7 -6
- package/lib/plugins/expressionPlugin.js +11 -25
- package/lib/plugins/jexlParser.js +8 -4
- package/lib/plugins/multiEntity.js +54 -145
- 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 +6 -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 +2 -0
- package/lib/services/devices/deviceService.js +2 -5
- package/lib/services/devices/devices-NGSI-LD.js +1 -1
- package/lib/services/devices/devices-NGSI-v2.js +4 -8
- package/lib/services/devices/registrationUtils.js +1 -134
- package/lib/services/ngsi/entities-NGSI-LD.js +205 -124
- package/lib/services/ngsi/entities-NGSI-v2.js +109 -15
- package/lib/services/ngsi/ngsiService.js +4 -6
- package/lib/services/ngsi/ngsiUtils.js +0 -36
- 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 +24 -12
- package/lib/services/northBound/contextServer.js +1 -4
- package/lib/services/northBound/contextServerUtils.js +0 -81
- package/lib/services/northBound/deviceProvisioningServer.js +31 -7
- package/lib/services/northBound/northboundServer.js +2 -0
- package/lib/services/northBound/restUtils.js +1 -38
- package/lib/templates/updateDevice.json +4 -0
- package/lib/templates/updateDeviceLax.json +4 -0
- package/package.json +10 -16
- package/test/tools/utils.js +2 -0
- package/test/unit/examples/groupProvisioningRequests/multipleGroupsCreation.json +1 -1
- package/test/unit/expressions/jexlExpression-test.js +44 -5
- package/test/unit/general/contextBrokerKeystoneSecurityAccess-test.js +19 -66
- package/test/unit/general/deviceService-test.js +11 -27
- package/test/unit/general/loglevel-api_test.js +6 -11
- package/test/unit/general/startup-test.js +2 -1
- package/test/unit/memoryRegistry/deviceRegistryMemory_test.js +8 -16
- package/test/unit/mongodb/mongodb-group-registry-test.js +1 -1
- package/test/unit/mongodb/mongodb-registry-test.js +38 -114
- 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/expressions/jexlBasedTransformations-test.js +1018 -0
- package/test/unit/ngsi-ld/general/contextBrokerOAuthSecurityAccess-test.js +2 -2
- package/test/unit/ngsi-ld/general/deviceService-test.js +1 -1
- package/test/unit/ngsi-ld/general/https-support-test.js +2 -1
- package/test/unit/ngsi-ld/general/iotam-autoregistration-test.js +2 -1
- package/test/unit/ngsi-ld/general/startup-test.js +1 -0
- package/test/unit/ngsi-ld/lazyAndCommands/active-devices-attribute-update-test.js +3 -1
- package/test/unit/ngsi-ld/lazyAndCommands/command-test.js +2 -1
- package/test/unit/ngsi-ld/lazyAndCommands/lazy-devices-test.js +2 -6
- package/test/unit/ngsi-ld/lazyAndCommands/polling-commands-test.js +2 -1
- package/test/unit/ngsi-ld/ngsiService/active-devices-test.js +1 -0
- package/test/unit/ngsi-ld/ngsiService/autocast-test.js +1 -0
- package/test/unit/ngsi-ld/ngsiService/geoproperties-test.js +1 -0
- package/test/unit/ngsi-ld/ngsiService/subscriptions-test.js +4 -3
- package/test/unit/ngsi-ld/plugins/alias-plugin_test.js +1 -0
- package/test/unit/ngsi-ld/plugins/bidirectional-plugin_test.js +3 -2
- package/test/unit/ngsi-ld/plugins/multientity-plugin_test.js +61 -0
- package/test/unit/ngsi-ld/provisioning/device-provisioning-api_test.js +2 -1
- package/test/unit/ngsi-ld/provisioning/device-registration_test.js +3 -2
- package/test/unit/ngsi-ld/provisioning/device-update-registration_test.js +1 -0
- package/test/unit/ngsi-ld/provisioning/listProvisionedDevices-test.js +42 -54
- package/test/unit/ngsi-ld/provisioning/provisionDeviceMultientity-test.js +2 -1
- package/test/unit/ngsi-ld/provisioning/removeProvisionedDevice-test.js +4 -4
- package/test/unit/ngsi-ld/provisioning/singleConfigurationMode-test.js +3 -5
- package/test/unit/ngsi-ld/provisioning/updateProvisionedDevices-test.js +12 -18
- package/test/unit/ngsi-mixed/provisioning/ngsi-versioning-test.js +3 -1
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent3.json +19 -0
- package/test/unit/ngsiv2/examples/contextAvailabilityRequests/registerIoTAgent5.json +19 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin17.json +1 -1
- package/test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin29.json +22 -0
- 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/updateContextMiddleware1.json +10 -0
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMiddleware2.json +10 -0
- 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/updateContextMultientityTimestampPlugin1.json +6 -6
- package/test/unit/ngsiv2/examples/contextRequests/updateContextMultientityTimestampPlugin2.json +3 -3
- package/test/unit/{examples → ngsiv2/examples}/contextRequests/updateProvisionDevice.json +0 -0
- package/test/unit/ngsiv2/expressions/expressionBasedTransformations-test.js +37 -4
- package/test/unit/ngsiv2/expressions/jexlBasedTransformations-test.js +598 -0
- package/test/unit/ngsiv2/general/contextBrokerOAuthSecurityAccess-test.js +3 -2
- package/test/unit/ngsiv2/general/deviceService-test.js +9 -8
- package/test/unit/ngsiv2/general/https-support-test.js +2 -1
- package/test/unit/ngsiv2/general/iotam-autoregistration-test.js +2 -1
- package/test/unit/ngsiv2/general/startup-test.js +1 -0
- package/test/unit/ngsiv2/lazyAndCommands/active-devices-attribute-update-test.js +3 -1
- package/test/unit/ngsiv2/lazyAndCommands/command-test.js +2 -1
- package/test/unit/ngsiv2/lazyAndCommands/lazy-devices-test.js +287 -15
- package/test/unit/ngsiv2/lazyAndCommands/polling-commands-test.js +3 -1
- package/test/unit/ngsiv2/ngsiService/active-devices-test.js +88 -0
- package/test/unit/{ngsiService → ngsiv2/ngsiService}/queryDeviceInformationInCb-test.js +20 -49
- package/test/unit/ngsiv2/ngsiService/subscriptions-test.js +4 -3
- package/test/unit/ngsiv2/plugins/bidirectional-plugin_test.js +3 -2
- package/test/unit/ngsiv2/plugins/multientity-plugin_test.js +526 -0
- package/test/unit/{plugins → ngsiv2/plugins}/translation-inPlugins_test.js +21 -21
- package/test/unit/{provisioning → ngsiv2/provisioning}/device-group-api-test.js +19 -50
- package/test/unit/{provisioning/device-group-utils_test.js → ngsiv2/provisioning/device-group-utils-test.js} +5 -4
- package/test/unit/ngsiv2/provisioning/device-provisioning-api_test.js +2 -1
- package/test/unit/ngsiv2/provisioning/device-registration_test.js +3 -2
- package/test/unit/ngsiv2/provisioning/device-update-registration_test.js +4 -3
- package/test/unit/ngsiv2/provisioning/listProvisionedDevices-test.js +42 -53
- package/test/unit/ngsiv2/provisioning/provisionDeviceMultientity-test.js +2 -1
- package/test/unit/ngsiv2/provisioning/removeProvisionedDevice-test.js +4 -4
- package/test/unit/ngsiv2/provisioning/singleConfigurationMode-test.js +3 -4
- package/test/unit/ngsiv2/provisioning/updateProvisionedDevices-test.js +14 -20
- package/test/unit/plugins/capture-configuration-inPlugins_test.js +3 -1
- package/test/unit/plugins/capture-provision-inPlugins_test.js +8 -18
- package/.eslintcache +0 -1
- package/.nyc_output/dca24ca1-851e-490c-9d34-8d13b3330297.json +0 -1
- package/.nyc_output/processinfo/dca24ca1-851e-490c-9d34-8d13b3330297.json +0 -1
- package/bin/agentConsole.js +0 -257
- package/bin/iotAgentTester.js +0 -44
- package/lib/command/commandLine.js +0 -918
- package/lib/command/migration.js +0 -176
- package/lib/services/devices/devices-NGSI-v1.js +0 -310
- package/lib/services/ngsi/entities-NGSI-v1.js +0 -299
- 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 -26
- 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 -32
- 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/updateContextExpressionPlugin10.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/updateContextExpressionPlugin6.json +0 -17
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin7.json +0 -27
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin8.json +0 -22
- package/test/unit/examples/contextRequests/updateContextExpressionPlugin9.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 -42
- 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/general/migration-test.js +0 -256
- 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
|
@@ -30,6 +30,7 @@ const utils = require('../../../tools/utils');
|
|
|
30
30
|
const should = require('should');
|
|
31
31
|
const logger = require('logops');
|
|
32
32
|
const nock = require('nock');
|
|
33
|
+
const timekeeper = require('timekeeper');
|
|
33
34
|
let contextBrokerMock;
|
|
34
35
|
const iotAgentConfig = {
|
|
35
36
|
logLevel: 'FATAL',
|
|
@@ -140,6 +141,37 @@ const iotAgentConfig = {
|
|
|
140
141
|
}
|
|
141
142
|
]
|
|
142
143
|
},
|
|
144
|
+
WeatherStationUndef: {
|
|
145
|
+
commands: [],
|
|
146
|
+
type: 'WeatherStation',
|
|
147
|
+
lazy: [],
|
|
148
|
+
active: [
|
|
149
|
+
{
|
|
150
|
+
object_id: 'u',
|
|
151
|
+
name: 'undef',
|
|
152
|
+
type: 'json',
|
|
153
|
+
expression: 'u["no"]'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
object_id: 'n',
|
|
157
|
+
name: 'nil',
|
|
158
|
+
type: 'json',
|
|
159
|
+
expression: 'u["no"]?u["no"]:null'
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
object_id: 'f',
|
|
163
|
+
name: 'falsy',
|
|
164
|
+
type: 'Boolean',
|
|
165
|
+
expression: 'u["no"]?u["no"]:false'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
object_id: 'z',
|
|
169
|
+
name: 'zero',
|
|
170
|
+
type: 'Number',
|
|
171
|
+
expression: 'u["no"]?u["no"]:0'
|
|
172
|
+
}
|
|
173
|
+
]
|
|
174
|
+
},
|
|
143
175
|
WeatherStationMultiple: {
|
|
144
176
|
commands: [],
|
|
145
177
|
type: 'WeatherStation',
|
|
@@ -185,6 +217,134 @@ const iotAgentConfig = {
|
|
|
185
217
|
expression: 'updated|trim'
|
|
186
218
|
}
|
|
187
219
|
]
|
|
220
|
+
},
|
|
221
|
+
GPS: {
|
|
222
|
+
commands: [],
|
|
223
|
+
type: 'GPS',
|
|
224
|
+
lazy: [],
|
|
225
|
+
active: [
|
|
226
|
+
{
|
|
227
|
+
name: 'location',
|
|
228
|
+
type: 'geo:json',
|
|
229
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'TimeInstant',
|
|
233
|
+
type: 'DateTime',
|
|
234
|
+
expression: 'ts|toisodate'
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
explicitAttrs: true
|
|
238
|
+
},
|
|
239
|
+
GPS2: {
|
|
240
|
+
commands: [],
|
|
241
|
+
type: 'GPS',
|
|
242
|
+
lazy: [],
|
|
243
|
+
active: [
|
|
244
|
+
{
|
|
245
|
+
name: 'location',
|
|
246
|
+
type: 'geo:json',
|
|
247
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
explicitAttrs: true
|
|
251
|
+
},
|
|
252
|
+
GPS3: {
|
|
253
|
+
commands: [],
|
|
254
|
+
type: 'GPS',
|
|
255
|
+
lazy: [],
|
|
256
|
+
static: [
|
|
257
|
+
{
|
|
258
|
+
name: 'color',
|
|
259
|
+
type: 'string',
|
|
260
|
+
value: 'blue'
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
active: [
|
|
264
|
+
{
|
|
265
|
+
name: 'price',
|
|
266
|
+
type: 'number'
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
name: 'location',
|
|
270
|
+
type: 'geo:json',
|
|
271
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
272
|
+
}
|
|
273
|
+
],
|
|
274
|
+
explicitAttrs: '[ "location" ]'
|
|
275
|
+
},
|
|
276
|
+
GPS4: {
|
|
277
|
+
commands: [],
|
|
278
|
+
type: 'GPS',
|
|
279
|
+
lazy: [],
|
|
280
|
+
static: [
|
|
281
|
+
{
|
|
282
|
+
name: 'color',
|
|
283
|
+
type: 'string',
|
|
284
|
+
value: 'blue'
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
active: [
|
|
288
|
+
{
|
|
289
|
+
name: 'price',
|
|
290
|
+
type: 'number'
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
name: 'location',
|
|
294
|
+
type: 'geo:json',
|
|
295
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
explicitAttrs: '[ "loca" + "tion" ]'
|
|
299
|
+
},
|
|
300
|
+
GPS5: {
|
|
301
|
+
commands: [],
|
|
302
|
+
type: 'GPS',
|
|
303
|
+
lazy: [],
|
|
304
|
+
static: [
|
|
305
|
+
{
|
|
306
|
+
name: 'color',
|
|
307
|
+
type: 'string',
|
|
308
|
+
value: 'blue'
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
active: [
|
|
312
|
+
{
|
|
313
|
+
name: 'price',
|
|
314
|
+
type: 'number'
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: 'location',
|
|
318
|
+
type: 'geo:json',
|
|
319
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
explicitAttrs: '[ myattr ]'
|
|
323
|
+
},
|
|
324
|
+
GPS6: {
|
|
325
|
+
commands: [],
|
|
326
|
+
type: 'GPS',
|
|
327
|
+
lazy: [],
|
|
328
|
+
static: [
|
|
329
|
+
{
|
|
330
|
+
name: 'lat',
|
|
331
|
+
type: 'Number',
|
|
332
|
+
value: 52
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
name: 'lon',
|
|
336
|
+
type: 'Number',
|
|
337
|
+
value: 13
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
active: [
|
|
341
|
+
{
|
|
342
|
+
name: 'location',
|
|
343
|
+
type: 'geo:json',
|
|
344
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
explicitAttrs: true
|
|
188
348
|
}
|
|
189
349
|
},
|
|
190
350
|
service: 'smartgondor',
|
|
@@ -194,6 +354,38 @@ const iotAgentConfig = {
|
|
|
194
354
|
throttling: 'PT5S'
|
|
195
355
|
};
|
|
196
356
|
|
|
357
|
+
const iotAgentConfigTS = {
|
|
358
|
+
logLevel: 'FATAL',
|
|
359
|
+
contextBroker: {
|
|
360
|
+
host: '192.168.1.1',
|
|
361
|
+
port: '1026',
|
|
362
|
+
ngsiVersion: 'v2'
|
|
363
|
+
},
|
|
364
|
+
defaultExpressionLanguage: 'jexl',
|
|
365
|
+
server: {
|
|
366
|
+
port: 4041
|
|
367
|
+
},
|
|
368
|
+
types: {
|
|
369
|
+
GPS: {
|
|
370
|
+
commands: [],
|
|
371
|
+
type: 'GPS',
|
|
372
|
+
lazy: [],
|
|
373
|
+
active: [
|
|
374
|
+
{
|
|
375
|
+
name: 'location',
|
|
376
|
+
type: 'geo:json',
|
|
377
|
+
expression: "{coordinates: [lon,lat], type: 'Point'}"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
explicitAttrs: true
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
timestamp: true,
|
|
384
|
+
service: 'smartgondor',
|
|
385
|
+
subservice: 'gardens',
|
|
386
|
+
providerUrl: 'http://smartgondor.com'
|
|
387
|
+
};
|
|
388
|
+
|
|
197
389
|
describe('Java expression language (JEXL) based transformations plugin', function () {
|
|
198
390
|
beforeEach(function (done) {
|
|
199
391
|
logger.setLevel('FATAL');
|
|
@@ -706,4 +898,410 @@ describe('Java expression language (JEXL) based transformations plugin', functio
|
|
|
706
898
|
});
|
|
707
899
|
});
|
|
708
900
|
});
|
|
901
|
+
|
|
902
|
+
describe('When a measure arrives and there is not enough information to calculate an expression', function () {
|
|
903
|
+
const values = [
|
|
904
|
+
{
|
|
905
|
+
name: 'p',
|
|
906
|
+
type: 'centigrades',
|
|
907
|
+
value: '52'
|
|
908
|
+
}
|
|
909
|
+
];
|
|
910
|
+
|
|
911
|
+
beforeEach(function () {
|
|
912
|
+
nock.cleanAll();
|
|
913
|
+
|
|
914
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
915
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
916
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
917
|
+
.patch(
|
|
918
|
+
'/v2/entities/ws1/attrs',
|
|
919
|
+
utils.readExampleFile(
|
|
920
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin29.json'
|
|
921
|
+
)
|
|
922
|
+
)
|
|
923
|
+
.query({ type: 'WeatherStation' })
|
|
924
|
+
.reply(204);
|
|
925
|
+
});
|
|
926
|
+
|
|
927
|
+
it('should not calculate the expression', function (done) {
|
|
928
|
+
iotAgentLib.update('ws1', 'WeatherStation', '', values, function (error) {
|
|
929
|
+
should.not.exist(error);
|
|
930
|
+
contextBrokerMock.done();
|
|
931
|
+
done();
|
|
932
|
+
});
|
|
933
|
+
});
|
|
934
|
+
});
|
|
935
|
+
describe('When a measure arrives and there is not enough information to calculate an expression', function () {
|
|
936
|
+
const values = [
|
|
937
|
+
{
|
|
938
|
+
name: 'u',
|
|
939
|
+
type: 'json',
|
|
940
|
+
value: '{}'
|
|
941
|
+
}
|
|
942
|
+
];
|
|
943
|
+
|
|
944
|
+
beforeEach(function () {
|
|
945
|
+
nock.cleanAll();
|
|
946
|
+
|
|
947
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
948
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
949
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
950
|
+
.patch(
|
|
951
|
+
'/v2/entities/ws1/attrs',
|
|
952
|
+
utils.readExampleFile(
|
|
953
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin31.json'
|
|
954
|
+
)
|
|
955
|
+
)
|
|
956
|
+
.query({ type: 'WeatherStation' })
|
|
957
|
+
.reply(204);
|
|
958
|
+
});
|
|
959
|
+
|
|
960
|
+
it('should not calculate the expression and allow falsy values', function (done) {
|
|
961
|
+
iotAgentLib.update('ws1', 'WeatherStationUndef', '', values, function (error) {
|
|
962
|
+
should.not.exist(error);
|
|
963
|
+
contextBrokerMock.done();
|
|
964
|
+
done();
|
|
965
|
+
});
|
|
966
|
+
});
|
|
967
|
+
});
|
|
968
|
+
|
|
969
|
+
describe('When there are additional attributes sent by the device to be calculated and removed', function () {
|
|
970
|
+
// Case: Expression which results is sent as a new attribute
|
|
971
|
+
const values = [
|
|
972
|
+
{
|
|
973
|
+
name: 'lat',
|
|
974
|
+
type: 'Number',
|
|
975
|
+
value: 52
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
name: 'lon',
|
|
979
|
+
type: 'Number',
|
|
980
|
+
value: 13
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
name: 'ts',
|
|
984
|
+
type: 'Number',
|
|
985
|
+
value: 1
|
|
986
|
+
}
|
|
987
|
+
];
|
|
988
|
+
|
|
989
|
+
beforeEach(function () {
|
|
990
|
+
nock.cleanAll();
|
|
991
|
+
|
|
992
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
993
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
994
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
995
|
+
.patch(
|
|
996
|
+
'/v2/entities/gps1/attrs',
|
|
997
|
+
utils.readExampleFile(
|
|
998
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin32.json'
|
|
999
|
+
)
|
|
1000
|
+
)
|
|
1001
|
+
.query({ type: 'GPS' })
|
|
1002
|
+
.reply(204);
|
|
1003
|
+
});
|
|
1004
|
+
|
|
1005
|
+
it('should calculate them and remove non-explicitAttrs from the payload', function (done) {
|
|
1006
|
+
iotAgentLib.update('gps1', 'GPS', '', values, function (error) {
|
|
1007
|
+
should.not.exist(error);
|
|
1008
|
+
contextBrokerMock.done();
|
|
1009
|
+
done();
|
|
1010
|
+
});
|
|
1011
|
+
});
|
|
1012
|
+
});
|
|
1013
|
+
|
|
1014
|
+
describe('When there is an extra TimeInstant sent by the device to be removed', function () {
|
|
1015
|
+
// Case: Expression which results is sent as a new attribute
|
|
1016
|
+
const values = [
|
|
1017
|
+
{
|
|
1018
|
+
name: 'lat',
|
|
1019
|
+
type: 'Number',
|
|
1020
|
+
value: 52
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
name: 'lon',
|
|
1024
|
+
type: 'Number',
|
|
1025
|
+
value: 13
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
name: 'TimeInstant',
|
|
1029
|
+
type: 'DateTime',
|
|
1030
|
+
value: '2015-08-05T07:35:01.468+00:00'
|
|
1031
|
+
}
|
|
1032
|
+
];
|
|
1033
|
+
|
|
1034
|
+
beforeEach(function () {
|
|
1035
|
+
nock.cleanAll();
|
|
1036
|
+
|
|
1037
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1038
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1039
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1040
|
+
.patch(
|
|
1041
|
+
'/v2/entities/gps1/attrs',
|
|
1042
|
+
utils.readExampleFile(
|
|
1043
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json'
|
|
1044
|
+
)
|
|
1045
|
+
)
|
|
1046
|
+
.query({ type: 'GPS' })
|
|
1047
|
+
.reply(204);
|
|
1048
|
+
});
|
|
1049
|
+
|
|
1050
|
+
it('should calculate them and remove non-explicitAttrs from the payload', function (done) {
|
|
1051
|
+
iotAgentLib.update('gps1', 'GPS2', '', values, function (error) {
|
|
1052
|
+
should.not.exist(error);
|
|
1053
|
+
contextBrokerMock.done();
|
|
1054
|
+
done();
|
|
1055
|
+
});
|
|
1056
|
+
});
|
|
1057
|
+
});
|
|
1058
|
+
|
|
1059
|
+
describe('When there is an extra TimeInstant sent by the device to be removed by string', function () {
|
|
1060
|
+
// Case: Expression which results is sent as a new attribute
|
|
1061
|
+
const values = [
|
|
1062
|
+
{
|
|
1063
|
+
name: 'lat',
|
|
1064
|
+
type: 'Number',
|
|
1065
|
+
value: 52
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
name: 'lon',
|
|
1069
|
+
type: 'Number',
|
|
1070
|
+
value: 13
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
name: 'TimeInstant',
|
|
1074
|
+
type: 'DateTime',
|
|
1075
|
+
value: '2015-08-05T07:35:01.468+00:00'
|
|
1076
|
+
}
|
|
1077
|
+
];
|
|
1078
|
+
|
|
1079
|
+
beforeEach(function () {
|
|
1080
|
+
nock.cleanAll();
|
|
1081
|
+
|
|
1082
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1083
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1084
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1085
|
+
.patch(
|
|
1086
|
+
'/v2/entities/gps1/attrs',
|
|
1087
|
+
utils.readExampleFile(
|
|
1088
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json'
|
|
1089
|
+
)
|
|
1090
|
+
)
|
|
1091
|
+
.query({ type: 'GPS' })
|
|
1092
|
+
.reply(204);
|
|
1093
|
+
});
|
|
1094
|
+
|
|
1095
|
+
it('should calculate them and remove non-explicitAttrs by string from the payload', function (done) {
|
|
1096
|
+
iotAgentLib.update('gps1', 'GPS3', '', values, function (error) {
|
|
1097
|
+
should.not.exist(error);
|
|
1098
|
+
contextBrokerMock.done();
|
|
1099
|
+
done();
|
|
1100
|
+
});
|
|
1101
|
+
});
|
|
1102
|
+
});
|
|
1103
|
+
|
|
1104
|
+
describe('When there is an extra TimeInstant sent by the device to be removed by jexl expression', function () {
|
|
1105
|
+
// Case: Expression which results is sent as a new attribute
|
|
1106
|
+
const values = [
|
|
1107
|
+
{
|
|
1108
|
+
name: 'lat',
|
|
1109
|
+
type: 'Number',
|
|
1110
|
+
value: 52
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
name: 'lon',
|
|
1114
|
+
type: 'Number',
|
|
1115
|
+
value: 13
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
name: 'TimeInstant',
|
|
1119
|
+
type: 'DateTime',
|
|
1120
|
+
value: '2015-08-05T07:35:01.468+00:00'
|
|
1121
|
+
}
|
|
1122
|
+
];
|
|
1123
|
+
|
|
1124
|
+
beforeEach(function () {
|
|
1125
|
+
nock.cleanAll();
|
|
1126
|
+
|
|
1127
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1128
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1129
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1130
|
+
.patch(
|
|
1131
|
+
'/v2/entities/gps1/attrs',
|
|
1132
|
+
utils.readExampleFile(
|
|
1133
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json'
|
|
1134
|
+
)
|
|
1135
|
+
)
|
|
1136
|
+
.query({ type: 'GPS' })
|
|
1137
|
+
.reply(204);
|
|
1138
|
+
});
|
|
1139
|
+
|
|
1140
|
+
it('should calculate them and remove non-explicitAttrs by jexl expression from the payload', function (done) {
|
|
1141
|
+
iotAgentLib.update('gps1', 'GPS4', '', values, function (error) {
|
|
1142
|
+
should.not.exist(error);
|
|
1143
|
+
contextBrokerMock.done();
|
|
1144
|
+
done();
|
|
1145
|
+
});
|
|
1146
|
+
});
|
|
1147
|
+
});
|
|
1148
|
+
|
|
1149
|
+
describe('When there is an extra TimeInstant sent by the device to be removed by jexl expression with context ', function () {
|
|
1150
|
+
// Case: Expression which results is sent as a new attribute
|
|
1151
|
+
const values = [
|
|
1152
|
+
{
|
|
1153
|
+
name: 'lat',
|
|
1154
|
+
type: 'Number',
|
|
1155
|
+
value: 52
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
name: 'lon',
|
|
1159
|
+
type: 'Number',
|
|
1160
|
+
value: 13
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
name: 'myattr',
|
|
1164
|
+
type: 'String',
|
|
1165
|
+
value: 'location'
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
name: 'TimeInstant',
|
|
1169
|
+
type: 'DateTime',
|
|
1170
|
+
value: '2015-08-05T07:35:01.468+00:00'
|
|
1171
|
+
}
|
|
1172
|
+
];
|
|
1173
|
+
|
|
1174
|
+
beforeEach(function () {
|
|
1175
|
+
nock.cleanAll();
|
|
1176
|
+
|
|
1177
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1178
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1179
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1180
|
+
.patch(
|
|
1181
|
+
'/v2/entities/gps1/attrs',
|
|
1182
|
+
utils.readExampleFile(
|
|
1183
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json'
|
|
1184
|
+
)
|
|
1185
|
+
)
|
|
1186
|
+
.query({ type: 'GPS' })
|
|
1187
|
+
.reply(204);
|
|
1188
|
+
});
|
|
1189
|
+
|
|
1190
|
+
it('should calculate them and remove non-explicitAttrs by jexl expression with context from the payload ', function (done) {
|
|
1191
|
+
iotAgentLib.update('gps1', 'GPS5', '', values, function (error) {
|
|
1192
|
+
should.not.exist(error);
|
|
1193
|
+
contextBrokerMock.done();
|
|
1194
|
+
done();
|
|
1195
|
+
});
|
|
1196
|
+
});
|
|
1197
|
+
});
|
|
1198
|
+
|
|
1199
|
+
describe('When there is an extra TimeInstant sent by the device to be removedb jexl expression using static attrs', function () {
|
|
1200
|
+
// Case: Expression which results is sent as a new attribute
|
|
1201
|
+
const values = [
|
|
1202
|
+
{
|
|
1203
|
+
name: 'TimeInstant',
|
|
1204
|
+
type: 'DateTime',
|
|
1205
|
+
value: '2015-08-05T07:35:01.468+00:00'
|
|
1206
|
+
}
|
|
1207
|
+
];
|
|
1208
|
+
|
|
1209
|
+
beforeEach(function () {
|
|
1210
|
+
nock.cleanAll();
|
|
1211
|
+
|
|
1212
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1213
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1214
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1215
|
+
.patch(
|
|
1216
|
+
'/v2/entities/gps1/attrs',
|
|
1217
|
+
utils.readExampleFile(
|
|
1218
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin34.json'
|
|
1219
|
+
)
|
|
1220
|
+
)
|
|
1221
|
+
.query({ type: 'GPS' })
|
|
1222
|
+
.reply(204);
|
|
1223
|
+
});
|
|
1224
|
+
|
|
1225
|
+
it('should calculate them and remove non-explicitAttrs from the payload', function (done) {
|
|
1226
|
+
iotAgentLib.update('gps1', 'GPS6', '', values, function (error) {
|
|
1227
|
+
should.not.exist(error);
|
|
1228
|
+
contextBrokerMock.done();
|
|
1229
|
+
done();
|
|
1230
|
+
});
|
|
1231
|
+
});
|
|
1232
|
+
});
|
|
1233
|
+
});
|
|
1234
|
+
|
|
1235
|
+
describe('Java expression language (JEXL) based transformations plugin - Timestamps', function () {
|
|
1236
|
+
beforeEach(function (done) {
|
|
1237
|
+
logger.setLevel('FATAL');
|
|
1238
|
+
|
|
1239
|
+
iotAgentLib.activate(iotAgentConfigTS, function () {
|
|
1240
|
+
iotAgentLib.clearAll(function () {
|
|
1241
|
+
iotAgentLib.addUpdateMiddleware(iotAgentLib.dataPlugins.attributeAlias.update);
|
|
1242
|
+
iotAgentLib.addQueryMiddleware(iotAgentLib.dataPlugins.attributeAlias.query);
|
|
1243
|
+
iotAgentLib.addUpdateMiddleware(iotAgentLib.dataPlugins.expressionTransformation.update);
|
|
1244
|
+
done();
|
|
1245
|
+
});
|
|
1246
|
+
});
|
|
1247
|
+
});
|
|
1248
|
+
|
|
1249
|
+
afterEach(function (done) {
|
|
1250
|
+
iotAgentLib.clearAll(function () {
|
|
1251
|
+
iotAgentLib.deactivate(done);
|
|
1252
|
+
});
|
|
1253
|
+
});
|
|
1254
|
+
|
|
1255
|
+
describe('When timestamps are added but are not explicitly defined', function () {
|
|
1256
|
+
// Case: Expression which results is sent as a new attribute
|
|
1257
|
+
const values = [
|
|
1258
|
+
{
|
|
1259
|
+
name: 'lat',
|
|
1260
|
+
type: 'Number',
|
|
1261
|
+
value: 52
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
name: 'lon',
|
|
1265
|
+
type: 'Number',
|
|
1266
|
+
value: 13
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
name: 'ts',
|
|
1270
|
+
type: 'Number',
|
|
1271
|
+
value: 1
|
|
1272
|
+
}
|
|
1273
|
+
];
|
|
1274
|
+
|
|
1275
|
+
beforeEach(function () {
|
|
1276
|
+
const time = new Date(1438760101468); // 2015-08-05T07:35:01.468+00:00
|
|
1277
|
+
|
|
1278
|
+
timekeeper.freeze(time);
|
|
1279
|
+
nock.cleanAll();
|
|
1280
|
+
|
|
1281
|
+
contextBrokerMock = nock('http://192.168.1.1:1026')
|
|
1282
|
+
.matchHeader('fiware-service', 'smartgondor')
|
|
1283
|
+
.matchHeader('fiware-servicepath', 'gardens')
|
|
1284
|
+
.patch(
|
|
1285
|
+
'/v2/entities/gps1/attrs',
|
|
1286
|
+
utils.readExampleFile(
|
|
1287
|
+
'./test/unit/ngsiv2/examples/contextRequests/updateContextExpressionPlugin33.json'
|
|
1288
|
+
)
|
|
1289
|
+
)
|
|
1290
|
+
.query({ type: 'GPS' })
|
|
1291
|
+
.reply(204);
|
|
1292
|
+
});
|
|
1293
|
+
|
|
1294
|
+
afterEach(function (done) {
|
|
1295
|
+
timekeeper.reset();
|
|
1296
|
+
done();
|
|
1297
|
+
});
|
|
1298
|
+
|
|
1299
|
+
it('should calculate them and not remove the timestamp from the payload', function (done) {
|
|
1300
|
+
iotAgentLib.update('gps1', 'GPS', '', values, function (error) {
|
|
1301
|
+
should.not.exist(error);
|
|
1302
|
+
contextBrokerMock.done();
|
|
1303
|
+
done();
|
|
1304
|
+
});
|
|
1305
|
+
});
|
|
1306
|
+
});
|
|
709
1307
|
});
|
|
@@ -27,10 +27,11 @@
|
|
|
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 logger = require('logops');
|
|
32
33
|
const nock = require('nock');
|
|
33
|
-
|
|
34
|
+
|
|
34
35
|
const timekeeper = require('timekeeper');
|
|
35
36
|
let contextBrokerMock;
|
|
36
37
|
let oauth2Mock;
|
|
@@ -338,7 +339,7 @@ describe('NGSI-v2 - Secured access to the Context Broker with OAuth2 provider',
|
|
|
338
339
|
)
|
|
339
340
|
.reply(201, utils.readExampleFile('./test/unit/examples/oauthResponses/tokenFromTrust.json'), {});
|
|
340
341
|
|
|
341
|
-
contextBrokerMock.delete('/v2/subscriptions/51c0ac9ed714fb3b37d7d5a8').reply(204);
|
|
342
|
+
contextBrokerMock.delete('/v2/subscriptions/51c0ac9ed714fb3b37d7d5a8', '').reply(204);
|
|
342
343
|
|
|
343
344
|
iotAgentLib.getDevice('Light1', 'smartgondor', 'electricity', function (error, device) {
|
|
344
345
|
iotAgentLib.subscribe(device, ['dimming'], null, function (error) {
|
|
@@ -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 logger = require('logops');
|
|
34
35
|
const async = require('async');
|
|
35
36
|
const iotAgentConfig = {
|
|
@@ -192,12 +193,12 @@ describe('NGSI-v2 - Device Service: utils', function () {
|
|
|
192
193
|
.post('/v2/entities?options=upsert')
|
|
193
194
|
.reply(204);
|
|
194
195
|
|
|
195
|
-
async.series(
|
|
196
|
-
|
|
197
|
-
results
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
196
|
+
async.series(
|
|
197
|
+
[utils.request.bind(utils.request, groupCreation), utils.request.bind(utils.request, deviceCreation)],
|
|
198
|
+
function (error, results) {
|
|
199
|
+
done();
|
|
200
|
+
}
|
|
201
|
+
);
|
|
201
202
|
});
|
|
202
203
|
|
|
203
204
|
it('should return the existing device', function (done) {
|
|
@@ -222,7 +223,7 @@ describe('NGSI-v2 - Device Service: utils', function () {
|
|
|
222
223
|
.post('/v2/entities?options=upsert')
|
|
223
224
|
.reply(204);
|
|
224
225
|
|
|
225
|
-
async.series([request.bind(request, groupCreation)], function (error, results) {
|
|
226
|
+
async.series([utils.request.bind(utils.request, groupCreation)], function (error, results) {
|
|
226
227
|
done();
|
|
227
228
|
});
|
|
228
229
|
});
|
|
@@ -27,9 +27,10 @@
|
|
|
27
27
|
/* eslint-disable no-unused-vars */
|
|
28
28
|
|
|
29
29
|
const iotAgentLib = require('../../../../lib/fiware-iotagent-lib');
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
const nock = require('nock');
|
|
32
32
|
const utils = require('../../../tools/utils');
|
|
33
|
+
const request = utils.request;
|
|
33
34
|
const groupRegistryMemory = require('../../../../lib/services/groups/groupRegistryMemory');
|
|
34
35
|
const should = require('should');
|
|
35
36
|
const iotAgentConfig = {
|