Search in sources :

Example 1 with AttributeAccessItemDto

use of org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto in project open-smart-grid-platform by OSGP.

the class AssociationLnListTypeMappingTest method testAssociationLnListTypeDtoMappingWithNonEmptyLists.

@Test
public void testAssociationLnListTypeDtoMappingWithNonEmptyLists() {
    // build test data
    final List<AttributeAccessItemDto> listAttributeAccessItemDto = new ArrayList<>();
    final AttributeAccessModeTypeDto accessMode = AttributeAccessModeTypeDto.NO_ACCESS;
    final List<Integer> listInteger = new ArrayList<>();
    final AccessSelectorListDto accessSelectors = new AccessSelectorListDto(listInteger);
    listAttributeAccessItemDto.add(new AttributeAccessItemDto(1, accessMode, accessSelectors));
    final AttributeAccessDescriptorDto attributeAccessDescriptorDto = new AttributeAccessDescriptorDto(listAttributeAccessItemDto);
    final List<MethodAccessItemDto> listMethodAccessItemDto = new ArrayList<>();
    final MethodAccessDescriptorDto methodAccessDescriptorDto = new MethodAccessDescriptorDto(listMethodAccessItemDto);
    final AssociationLnListElementDto associationLnElementDto = new AssociationLnListElementDto(72, 2, new CosemObisCodeDto(new int[] { 1, 1, 1, 1, 1, 1 }), new AccessRightDto(attributeAccessDescriptorDto, methodAccessDescriptorDto));
    final AssociationLnListTypeDto associationLnListTypeDto = new AssociationLnListTypeDtoBuilder().withNonEmptyLists(associationLnElementDto).build();
    // actual mapping
    final AssociationLnListType associationLnListType = this.configurationMapper.map(associationLnListTypeDto, AssociationLnListType.class);
    // check values
    assertThat(associationLnListType).isNotNull();
    this.checkAssociationLnListElementMapping(associationLnListType.getAssociationLnListElement(), associationLnListTypeDto.getAssociationLnListElement());
}
Also used : AccessRightDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AccessRightDto) AttributeAccessItemDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto) AssociationLnListElementDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AssociationLnListElementDto) ArrayList(java.util.ArrayList) CosemObisCodeDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.CosemObisCodeDto) AccessSelectorListDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AccessSelectorListDto) AssociationLnListType(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.AssociationLnListType) AssociationLnListTypeDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AssociationLnListTypeDto) AttributeAccessDescriptorDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessDescriptorDto) MethodAccessItemDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.MethodAccessItemDto) MethodAccessDescriptorDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.MethodAccessDescriptorDto) AttributeAccessModeTypeDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessModeTypeDto) Test(org.junit.jupiter.api.Test)

Example 2 with AttributeAccessItemDto

use of org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto in project open-smart-grid-platform by OSGP.

the class GetAssociationLnObjectsCommandExecutor method convertAttributeAccessDescriptor.

private AttributeAccessDescriptorDto convertAttributeAccessDescriptor(final List<DataObject> attributeAccessDescriptor) throws ProtocolAdapterException {
    final List<AttributeAccessItemDto> attributeAccessItems = new ArrayList<>();
    for (final DataObject attributeAccessItemRaw : attributeAccessDescriptor) {
        final List<DataObject> attributeAccessItem = attributeAccessItemRaw.getValue();
        final AccessSelectorListDto asl;
        if (attributeAccessItem.get(ACCESS_RIGHTS_ATTRIBUTE_ACCESS_ACCESS_SELECTORS_INDEX).isNull()) {
            asl = new AccessSelectorListDto(Collections.emptyList());
        } else {
            final List<DataObject> accessSelectorsObjects = attributeAccessItem.get(ACCESS_RIGHTS_ATTRIBUTE_ACCESS_ACCESS_SELECTORS_INDEX).getValue();
            asl = new AccessSelectorListDto(this.convertAccessSelectors(accessSelectorsObjects));
        }
        attributeAccessItems.add(new AttributeAccessItemDto(this.dlmsHelper.readLong(attributeAccessItem.get(ACCESS_RIGHTS_ATTRIBUTE_ACCESS_ATTRIBUTE_ID_INDEX), "").intValue(), AttributeAccessModeTypeDto.values()[this.dlmsHelper.readLong(attributeAccessItem.get(ACCESS_RIGHTS_ATTRIBUTE_ACCESS_ACCESS_MODE_INDEX), "").intValue()], asl));
    }
    return new AttributeAccessDescriptorDto(attributeAccessItems);
}
Also used : AccessSelectorListDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AccessSelectorListDto) AttributeAccessItemDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto) DataObject(org.openmuc.jdlms.datatypes.DataObject) AttributeAccessDescriptorDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessDescriptorDto) ArrayList(java.util.ArrayList)

Example 3 with AttributeAccessItemDto

use of org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto in project open-smart-grid-platform by OSGP.

the class AssociationLnListTypeMappingTest method checkAttributeAccessItem.

private void checkAttributeAccessItem(final List<AttributeAccessItem> attributeAccessItemList, final List<AttributeAccessItemDto> attributeAccessItemDtoList) {
    assertThat(attributeAccessItemDtoList.size()).isEqualTo(attributeAccessItemList.size());
    final Iterator<AttributeAccessItem> attributeAccessItemIterator = attributeAccessItemList.iterator();
    final Iterator<AttributeAccessItemDto> attributeAccessItemDtoIterator = attributeAccessItemDtoList.iterator();
    while (attributeAccessItemIterator.hasNext() && attributeAccessItemDtoIterator.hasNext()) {
        final AttributeAccessItem attributeAccessItem = attributeAccessItemIterator.next();
        final AttributeAccessItemDto attributeAccessItemDto = attributeAccessItemDtoIterator.next();
        assertThat(attributeAccessItemDto.getAccessMode().name()).isEqualTo(attributeAccessItem.getAccessMode().name());
        assertThat(attributeAccessItemDto.getAccessSelectors().getAccessSelector()).isEqualTo(attributeAccessItem.getAccessSelectors().getAccessSelector());
        assertThat(attributeAccessItemDto.getAttributeId()).isEqualTo(attributeAccessItem.getAttributeId());
    }
}
Also used : AttributeAccessItemDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto) AttributeAccessItem(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.AttributeAccessItem)

Aggregations

AttributeAccessItemDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessItemDto)3 ArrayList (java.util.ArrayList)2 AccessSelectorListDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AccessSelectorListDto)2 AttributeAccessDescriptorDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessDescriptorDto)2 Test (org.junit.jupiter.api.Test)1 DataObject (org.openmuc.jdlms.datatypes.DataObject)1 AssociationLnListType (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.AssociationLnListType)1 AttributeAccessItem (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.AttributeAccessItem)1 AccessRightDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AccessRightDto)1 AssociationLnListElementDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AssociationLnListElementDto)1 AssociationLnListTypeDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AssociationLnListTypeDto)1 AttributeAccessModeTypeDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.AttributeAccessModeTypeDto)1 CosemObisCodeDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.CosemObisCodeDto)1 MethodAccessDescriptorDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.MethodAccessDescriptorDto)1 MethodAccessItemDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.MethodAccessItemDto)1