15 changed files with 551 additions and 9 deletions
@ -0,0 +1,76 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor; |
|||
|
|||
import org.junit.jupiter.params.provider.Arguments; |
|||
import org.springframework.boot.test.mock.mockito.MockBean; |
|||
import org.springframework.context.annotation.Import; |
|||
import org.thingsboard.server.common.data.edge.EdgeEvent; |
|||
import org.thingsboard.server.common.data.id.DashboardId; |
|||
import org.thingsboard.server.common.data.id.EdgeId; |
|||
import org.thingsboard.server.common.data.id.RuleChainId; |
|||
import org.thingsboard.server.common.data.id.TenantId; |
|||
import org.thingsboard.server.gen.edge.v1.EdgeVersion; |
|||
import org.thingsboard.server.queue.util.DataDecodingEncodingService; |
|||
|
|||
import java.util.UUID; |
|||
import java.util.stream.Stream; |
|||
|
|||
@Import(EdgeProcessorBeansConfiguration.class) |
|||
public abstract class BaseEdgeProcessorTest { |
|||
|
|||
@MockBean |
|||
protected DataDecodingEncodingService dataDecodingEncodingService; |
|||
|
|||
protected EdgeId edgeId; |
|||
protected TenantId tenantId; |
|||
protected EdgeEvent edgeEvent; |
|||
|
|||
protected DashboardId getDashboardId(long expectedDashboardIdMSB, long expectedDashboardIdLSB) { |
|||
DashboardId dashboardId; |
|||
if (expectedDashboardIdMSB != 0 && expectedDashboardIdLSB != 0) { |
|||
dashboardId = new DashboardId(new UUID(expectedDashboardIdMSB, expectedDashboardIdLSB)); |
|||
} else { |
|||
dashboardId = new DashboardId(UUID.randomUUID()); |
|||
} |
|||
return dashboardId; |
|||
} |
|||
|
|||
protected RuleChainId getRuleChainId(long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
RuleChainId ruleChainId; |
|||
if (expectedRuleChainIdMSB != 0 && expectedRuleChainIdLSB != 0) { |
|||
ruleChainId = new RuleChainId(new UUID(expectedRuleChainIdMSB, expectedRuleChainIdLSB)); |
|||
} else { |
|||
ruleChainId = new RuleChainId(UUID.randomUUID()); |
|||
} |
|||
return ruleChainId; |
|||
} |
|||
|
|||
protected static Stream<Arguments> provideParameters() { |
|||
UUID dashoboardUUID = UUID.randomUUID(); |
|||
UUID ruleChaindUUID = UUID.randomUUID(); |
|||
return Stream.of( |
|||
Arguments.of(EdgeVersion.V_3_3_0, 0, 0, 0, 0), |
|||
Arguments.of(EdgeVersion.V_3_3_3, 0, 0, 0, 0), |
|||
Arguments.of(EdgeVersion.V_3_4_0, 0, 0, 0, 0), |
|||
Arguments.of(EdgeVersion.V_3_6_0, |
|||
dashoboardUUID.getMostSignificantBits(), |
|||
dashoboardUUID.getLeastSignificantBits(), |
|||
ruleChaindUUID.getMostSignificantBits(), |
|||
ruleChaindUUID.getLeastSignificantBits()) |
|||
); |
|||
} |
|||
} |
|||
@ -0,0 +1,108 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.asset; |
|||
|
|||
import org.assertj.core.api.Assertions; |
|||
import org.junit.jupiter.api.BeforeEach; |
|||
import org.springframework.boot.test.mock.mockito.MockBean; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.common.data.asset.Asset; |
|||
import org.thingsboard.server.common.data.asset.AssetProfile; |
|||
import org.thingsboard.server.common.data.edge.EdgeEvent; |
|||
import org.thingsboard.server.common.data.edge.EdgeEventActionType; |
|||
import org.thingsboard.server.common.data.id.AssetId; |
|||
import org.thingsboard.server.common.data.id.AssetProfileId; |
|||
import org.thingsboard.server.common.data.id.DashboardId; |
|||
import org.thingsboard.server.common.data.id.EdgeId; |
|||
import org.thingsboard.server.common.data.id.RuleChainId; |
|||
import org.thingsboard.server.common.data.id.TenantId; |
|||
import org.thingsboard.server.dao.asset.AssetProfileService; |
|||
import org.thingsboard.server.dao.asset.AssetService; |
|||
import org.thingsboard.server.gen.edge.v1.AssetProfileUpdateMsg; |
|||
import org.thingsboard.server.gen.edge.v1.DeviceProfileUpdateMsg; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.service.edge.rpc.constructor.AssetMsgConstructor; |
|||
import org.thingsboard.server.service.edge.rpc.constructor.AssetProfileMsgConstructor; |
|||
import org.thingsboard.server.service.edge.rpc.processor.BaseEdgeProcessorTest; |
|||
|
|||
import java.util.UUID; |
|||
|
|||
import static org.junit.jupiter.api.Assertions.assertNotNull; |
|||
import static org.mockito.BDDMockito.willReturn; |
|||
|
|||
public abstract class AbstractAssetProcessorTest extends BaseEdgeProcessorTest { |
|||
|
|||
@MockBean |
|||
AssetProfileService assetProfileService; |
|||
@MockBean |
|||
AssetService assetService; |
|||
|
|||
@SpyBean |
|||
AssetMsgConstructor assetMsgConstructor; |
|||
@SpyBean |
|||
AssetProfileMsgConstructor assetProfileMsgConstructor; |
|||
|
|||
protected AssetId assetId; |
|||
protected AssetProfileId assetProfileId; |
|||
protected AssetProfile assetProfile; |
|||
|
|||
@BeforeEach |
|||
public void setUp() { |
|||
edgeId = new EdgeId(UUID.randomUUID()); |
|||
tenantId = new TenantId(UUID.randomUUID()); |
|||
assetId = new AssetId(UUID.randomUUID()); |
|||
assetProfileId = new AssetProfileId(UUID.randomUUID()); |
|||
|
|||
assetProfile = new AssetProfile(); |
|||
assetProfile.setId(assetProfileId); |
|||
assetProfile.setName("AssetProfile"); |
|||
assetProfile.setDefault(true); |
|||
|
|||
Asset asset = new Asset(); |
|||
asset.setAssetProfileId(assetProfileId); |
|||
asset.setId(assetId); |
|||
asset.setName("Asset"); |
|||
asset.setType(assetProfile.getName()); |
|||
|
|||
edgeEvent = new EdgeEvent(); |
|||
edgeEvent.setTenantId(tenantId); |
|||
edgeEvent.setAction(EdgeEventActionType.ADDED); |
|||
|
|||
|
|||
willReturn(asset).given(assetService).findAssetById(tenantId, assetId); |
|||
willReturn(assetProfile).given(assetProfileService).findAssetProfileById(tenantId, assetProfileId); |
|||
} |
|||
|
|||
protected void updateAssetProfileDefaultFields(long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
DashboardId dashboardId = getDashboardId(expectedDashboardIdMSB, expectedDashboardIdLSB); |
|||
RuleChainId ruleChainId = getRuleChainId(expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
|
|||
assetProfile.setDefaultDashboardId(dashboardId); |
|||
assetProfile.setDefaultEdgeRuleChainId(ruleChainId); |
|||
|
|||
} |
|||
|
|||
protected void verify(DownlinkMsg downlinkMsg, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
AssetProfileUpdateMsg assetProfileUpdateMsg = downlinkMsg.getAssetProfileUpdateMsgList().get(0); |
|||
assertNotNull(assetProfileUpdateMsg); |
|||
Assertions.assertThat(assetProfileUpdateMsg.getDefaultDashboardIdMSB()).isEqualTo(expectedDashboardIdMSB); |
|||
Assertions.assertThat(assetProfileUpdateMsg.getDefaultDashboardIdLSB()).isEqualTo(expectedDashboardIdLSB); |
|||
Assertions.assertThat(assetProfileUpdateMsg.getDefaultRuleChainIdMSB()).isEqualTo(expectedRuleChainIdMSB); |
|||
Assertions.assertThat(assetProfileUpdateMsg.getDefaultRuleChainIdLSB()).isEqualTo(expectedRuleChainIdLSB); |
|||
} |
|||
} |
|||
@ -0,0 +1,44 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.asset; |
|||
|
|||
import org.junit.jupiter.params.ParameterizedTest; |
|||
import org.junit.jupiter.params.provider.MethodSource; |
|||
import org.springframework.boot.test.context.SpringBootTest; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.gen.edge.v1.EdgeVersion; |
|||
|
|||
@SpringBootTest(classes = {AssetEdgeProcessor.class}) |
|||
class AssetEdgeProcessorTest extends AbstractAssetProcessorTest { |
|||
|
|||
@SpyBean |
|||
AssetEdgeProcessor assetEdgeProcessor; |
|||
|
|||
@ParameterizedTest |
|||
@MethodSource("provideParameters") |
|||
public void testAssetProfileDefaultFields_notSendToEdgeOlder3_6_0IfNotAssigned(EdgeVersion edgeVersion, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
updateAssetProfileDefaultFields(expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
|
|||
edgeEvent.setEntityId(assetId.getId()); |
|||
|
|||
DownlinkMsg downlinkMsg = assetEdgeProcessor.convertAssetEventToDownlink(edgeEvent, edgeId, edgeVersion); |
|||
|
|||
verify(downlinkMsg, expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,43 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.asset; |
|||
|
|||
import org.junit.jupiter.params.ParameterizedTest; |
|||
import org.junit.jupiter.params.provider.MethodSource; |
|||
import org.springframework.boot.test.context.SpringBootTest; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.gen.edge.v1.EdgeVersion; |
|||
|
|||
@SpringBootTest(classes = {AssetProfileEdgeProcessor.class}) |
|||
class AssetProfileEdgeProcessorTest extends AbstractAssetProcessorTest{ |
|||
@SpyBean |
|||
AssetProfileEdgeProcessor assetProfileEdgeProcessor; |
|||
|
|||
@ParameterizedTest |
|||
@MethodSource("provideParameters") |
|||
public void testAssetProfileDefaultFields_notSendToEdgeOlder3_6_0IfNotAssigned(EdgeVersion edgeVersion, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
|
|||
updateAssetProfileDefaultFields(expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
|
|||
edgeEvent.setEntityId(assetProfileId.getId()); |
|||
|
|||
DownlinkMsg downlinkMsg = assetProfileEdgeProcessor.convertAssetProfileEventToDownlink(edgeEvent, edgeId, edgeVersion); |
|||
|
|||
verify(downlinkMsg, expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
} |
|||
} |
|||
@ -0,0 +1,116 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.device; |
|||
|
|||
import org.assertj.core.api.Assertions; |
|||
import org.junit.jupiter.api.BeforeEach; |
|||
import org.springframework.boot.test.mock.mockito.MockBean; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.common.data.Device; |
|||
import org.thingsboard.server.common.data.DeviceProfile; |
|||
import org.thingsboard.server.common.data.DeviceProfileType; |
|||
import org.thingsboard.server.common.data.DeviceTransportType; |
|||
import org.thingsboard.server.common.data.device.profile.DeviceProfileData; |
|||
import org.thingsboard.server.common.data.edge.EdgeEvent; |
|||
import org.thingsboard.server.common.data.edge.EdgeEventActionType; |
|||
import org.thingsboard.server.common.data.id.DashboardId; |
|||
import org.thingsboard.server.common.data.id.DeviceId; |
|||
import org.thingsboard.server.common.data.id.DeviceProfileId; |
|||
import org.thingsboard.server.common.data.id.EdgeId; |
|||
import org.thingsboard.server.common.data.id.RuleChainId; |
|||
import org.thingsboard.server.common.data.id.TenantId; |
|||
import org.thingsboard.server.dao.device.DeviceProfileService; |
|||
import org.thingsboard.server.dao.device.DeviceService; |
|||
import org.thingsboard.server.gen.edge.v1.DeviceProfileUpdateMsg; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.service.edge.rpc.constructor.DeviceMsgConstructor; |
|||
import org.thingsboard.server.service.edge.rpc.constructor.DeviceProfileMsgConstructor; |
|||
import org.thingsboard.server.service.edge.rpc.processor.BaseEdgeProcessorTest; |
|||
|
|||
import java.util.UUID; |
|||
|
|||
import static org.junit.jupiter.api.Assertions.assertNotNull; |
|||
import static org.mockito.BDDMockito.willReturn; |
|||
|
|||
public abstract class AbstractDeviceProcessorTest extends BaseEdgeProcessorTest { |
|||
|
|||
@MockBean |
|||
DeviceProfileService deviceProfileService; |
|||
@MockBean |
|||
DeviceService deviceService; |
|||
|
|||
@SpyBean |
|||
DeviceMsgConstructor deviceMsgConstructor; |
|||
@SpyBean |
|||
DeviceProfileMsgConstructor deviceProfileMsgConstructor; |
|||
|
|||
protected DeviceId deviceId; |
|||
protected DeviceProfileId deviceProfileId; |
|||
protected DeviceProfile deviceProfile; |
|||
|
|||
@BeforeEach |
|||
public void setUp() { |
|||
edgeId = new EdgeId(UUID.randomUUID()); |
|||
tenantId = new TenantId(UUID.randomUUID()); |
|||
deviceId = new DeviceId(UUID.randomUUID()); |
|||
deviceProfileId = new DeviceProfileId(UUID.randomUUID()); |
|||
|
|||
deviceProfile = new DeviceProfile(); |
|||
deviceProfile.setId(deviceProfileId); |
|||
deviceProfile.setName("DeviceProfile"); |
|||
deviceProfile.setDefault(true); |
|||
deviceProfile.setType(DeviceProfileType.DEFAULT); |
|||
DeviceProfileData deviceProfileData = new DeviceProfileData(); |
|||
deviceProfile.setProfileData(deviceProfileData); |
|||
deviceProfile.setTransportType(DeviceTransportType.DEFAULT); |
|||
|
|||
Device device = new Device(); |
|||
device.setDeviceProfileId(deviceProfileId); |
|||
device.setId(deviceId); |
|||
device.setName("Device"); |
|||
device.setType(deviceProfile.getName()); |
|||
|
|||
edgeEvent = new EdgeEvent(); |
|||
edgeEvent.setTenantId(tenantId); |
|||
edgeEvent.setAction(EdgeEventActionType.ADDED); |
|||
|
|||
|
|||
willReturn(device).given(deviceService).findDeviceById(tenantId, deviceId); |
|||
willReturn(deviceProfile).given(deviceProfileService).findDeviceProfileById(tenantId, deviceProfileId); |
|||
willReturn(new byte[]{0x00}).given(dataDecodingEncodingService).encode(deviceProfileData); |
|||
|
|||
} |
|||
|
|||
protected void updateDeviceProfileDefaultFields(long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
DashboardId dashboardId = getDashboardId(expectedDashboardIdMSB, expectedDashboardIdLSB); |
|||
RuleChainId ruleChainId = getRuleChainId(expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
|
|||
deviceProfile.setDefaultDashboardId(dashboardId); |
|||
deviceProfile.setDefaultEdgeRuleChainId(ruleChainId); |
|||
|
|||
} |
|||
|
|||
protected void verify(DownlinkMsg downlinkMsg, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
DeviceProfileUpdateMsg deviceProfileUpdateMsg = downlinkMsg.getDeviceProfileUpdateMsgList().get(0); |
|||
assertNotNull(deviceProfileUpdateMsg); |
|||
Assertions.assertThat(deviceProfileUpdateMsg.getDefaultDashboardIdMSB()).isEqualTo(expectedDashboardIdMSB); |
|||
Assertions.assertThat(deviceProfileUpdateMsg.getDefaultDashboardIdLSB()).isEqualTo(expectedDashboardIdLSB); |
|||
Assertions.assertThat(deviceProfileUpdateMsg.getDefaultRuleChainIdMSB()).isEqualTo(expectedRuleChainIdMSB); |
|||
Assertions.assertThat(deviceProfileUpdateMsg.getDefaultRuleChainIdLSB()).isEqualTo(expectedRuleChainIdLSB); |
|||
} |
|||
} |
|||
@ -0,0 +1,43 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.device; |
|||
|
|||
import org.junit.jupiter.params.ParameterizedTest; |
|||
import org.junit.jupiter.params.provider.MethodSource; |
|||
import org.springframework.boot.test.context.SpringBootTest; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.gen.edge.v1.EdgeVersion; |
|||
|
|||
@SpringBootTest(classes = {DeviceEdgeProcessor.class}) |
|||
class DeviceEdgeProcessorTest extends AbstractDeviceProcessorTest { |
|||
|
|||
@SpyBean |
|||
DeviceEdgeProcessor deviceEdgeProcessor; |
|||
|
|||
@ParameterizedTest |
|||
@MethodSource("provideParameters") |
|||
public void testDeviceProfileDefaultFields_notSendToEdgeOlder3_6_0IfNotAssigned(EdgeVersion edgeVersion, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
updateDeviceProfileDefaultFields(expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
edgeEvent.setEntityId(deviceId.getId()); |
|||
|
|||
DownlinkMsg downlinkMsg = deviceEdgeProcessor.convertDeviceEventToDownlink(edgeEvent, edgeId, edgeVersion); |
|||
|
|||
verify(downlinkMsg, expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,45 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.service.edge.rpc.processor.device; |
|||
|
|||
import org.junit.jupiter.params.ParameterizedTest; |
|||
import org.junit.jupiter.params.provider.MethodSource; |
|||
import org.springframework.boot.test.context.SpringBootTest; |
|||
import org.springframework.boot.test.mock.mockito.SpyBean; |
|||
import org.thingsboard.server.gen.edge.v1.DownlinkMsg; |
|||
import org.thingsboard.server.gen.edge.v1.EdgeVersion; |
|||
|
|||
|
|||
@SpringBootTest(classes = {DeviceProfileEdgeProcessor.class}) |
|||
class DeviceProfileEdgeProcessorTest extends AbstractDeviceProcessorTest { |
|||
|
|||
@SpyBean |
|||
DeviceProfileEdgeProcessor deviceProfileEdgeProcessor; |
|||
|
|||
@ParameterizedTest |
|||
@MethodSource("provideParameters") |
|||
public void testDeviceProfileDefaultFields_notSendToEdgeOlder3_6_0IfNotAssigned(EdgeVersion edgeVersion, long expectedDashboardIdMSB, long expectedDashboardIdLSB, |
|||
long expectedRuleChainIdMSB, long expectedRuleChainIdLSB) { |
|||
updateDeviceProfileDefaultFields(expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
|
|||
edgeEvent.setEntityId(deviceProfileId.getId()); |
|||
|
|||
DownlinkMsg downlinkMsg = deviceProfileEdgeProcessor.convertDeviceProfileEventToDownlink(edgeEvent, edgeId, edgeVersion); |
|||
|
|||
verify(downlinkMsg, expectedDashboardIdMSB, expectedDashboardIdLSB, expectedRuleChainIdMSB, expectedRuleChainIdLSB); |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue