Search in sources :

Example 1 with RelayMap

use of org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap in project open-smart-grid-platform by OSGP.

the class SetConfigurationSteps method addFilledRelayConfigurationToConfiguration.

private void addFilledRelayConfigurationToConfiguration(final Map<String, String> requestParameters, final Configuration config) throws ArgumentNullOrEmptyException {
    final String rcMap = getString(requestParameters, PlatformKeys.RELAY_CONF);
    if (rcMap != null) {
        final RelayConfiguration relayConfiguration = new RelayConfiguration();
        final String[] relayMapArray = rcMap.split(";");
        for (final String relayMapElement : relayMapArray) {
            final RelayMap relayMap = new RelayMap();
            final String[] subRelayMapElement = relayMapElement.split(",");
            if (!StringUtils.isEmpty(subRelayMapElement[0])) {
                relayMap.setIndex(Integer.parseInt(subRelayMapElement[0]));
            }
            if (subRelayMapElement.length >= 2 && !StringUtils.isEmpty(subRelayMapElement[1])) {
                relayMap.setAddress(Integer.parseInt(subRelayMapElement[1]));
            }
            if (subRelayMapElement.length >= 3 && !StringUtils.isEmpty(subRelayMapElement[2])) {
                relayMap.setRelayType(RelayType.valueOf(subRelayMapElement[2]));
            }
            relayConfiguration.getRelayMap().add(relayMap);
        }
        config.setRelayConfiguration(relayConfiguration);
    }
}
Also used : RelayConfiguration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayConfiguration) ReadSettingsHelper.getString(org.opensmartgridplatform.cucumber.core.ReadSettingsHelper.getString) RelayMap(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap)

Example 2 with RelayMap

use of org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap in project open-smart-grid-platform by OSGP.

the class GetConfigurationSteps method thePlatformBuffersAGetConfigurationResponseMessageForDevice.

@Then("^the platform buffers a get configuration response message for device \"([^\"]*)\"$")
public void thePlatformBuffersAGetConfigurationResponseMessageForDevice(final String deviceIdentification, final Map<String, String> expectedResponseData) throws Throwable {
    final GetConfigurationAsyncRequest request = new GetConfigurationAsyncRequest();
    final AsyncRequest asyncRequest = new AsyncRequest();
    asyncRequest.setDeviceId(deviceIdentification);
    asyncRequest.setCorrelationUid((String) ScenarioContext.current().get(PlatformKeys.KEY_CORRELATION_UID));
    request.setAsyncRequest(asyncRequest);
    final GetConfigurationResponse response = Wait.untilAndReturn(() -> {
        final GetConfigurationResponse retval = this.client.getGetConfiguration(request);
        assertThat(retval).isNotNull();
        assertThat(retval.getResult()).isEqualTo(getEnum(expectedResponseData, PlatformKeys.KEY_RESULT, OsgpResultType.class));
        return retval;
    });
    final Configuration configuration = response.getConfiguration();
    assertThat(configuration).isNotNull();
    if (expectedResponseData.containsKey(PlatformKeys.KEY_LIGHTTYPE) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.KEY_LIGHTTYPE)) && configuration.getLightType() != null) {
        assertThat(configuration.getLightType()).isEqualTo(getEnum(expectedResponseData, PlatformKeys.KEY_LIGHTTYPE, LightType.class));
    }
    final DaliConfiguration daliConfiguration = configuration.getDaliConfiguration();
    if (daliConfiguration != null) {
        if (expectedResponseData.containsKey(PlatformKeys.DC_LIGHTS) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.DC_LIGHTS)) && daliConfiguration.getNumberOfLights() != 0) {
            assertThat(daliConfiguration.getNumberOfLights()).isEqualTo((int) getInteger(expectedResponseData, PlatformKeys.DC_LIGHTS));
        }
        if (expectedResponseData.containsKey(PlatformKeys.DC_MAP) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.DC_MAP)) && daliConfiguration.getIndexAddressMap() != null) {
            final List<IndexAddressMap> indexAddressMapList = daliConfiguration.getIndexAddressMap();
            final String[] dcMapArray = getString(expectedResponseData, PlatformKeys.DC_MAP).split(";");
            for (int i = 0; i < dcMapArray.length; i++) {
                final String[] dcMapArrayElements = dcMapArray[i].split(",");
                assertThat(indexAddressMapList.get(i).getIndex()).isEqualTo(Integer.parseInt(dcMapArrayElements[0]));
                assertThat(indexAddressMapList.get(i).getAddress()).isEqualTo(Integer.parseInt(dcMapArrayElements[1]));
            }
        }
    }
    final RelayConfiguration relayConfiguration = configuration.getRelayConfiguration();
    if (relayConfiguration != null) {
        if (expectedResponseData.containsKey(PlatformKeys.RELAY_CONF) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.RELAY_CONF)) && relayConfiguration.getRelayMap() != null) {
            final List<RelayMap> relayMapList = relayConfiguration.getRelayMap();
            final String[] rcMapArray = getString(expectedResponseData, PlatformKeys.RELAY_CONF).split(";");
            for (int i = 0; i < rcMapArray.length; i++) {
                final String[] rcMapArrayElements = rcMapArray[i].split(",");
                if (rcMapArrayElements.length > 0 && relayMapList.size() > 0) {
                    assertThat(relayMapList.get(i).getIndex()).isEqualTo(Integer.parseInt(rcMapArrayElements[0]));
                    assertThat(relayMapList.get(i).getAddress()).isEqualTo(Integer.parseInt(rcMapArrayElements[1]));
                    if (expectedResponseData.containsKey(PlatformKeys.KEY_RELAY_TYPE) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.KEY_RELAY_TYPE)) && relayMapList.get(i).getRelayType() != null) {
                        assertThat(relayMapList.get(i).getRelayType()).isEqualTo(getEnum(expectedResponseData, PlatformKeys.KEY_RELAY_TYPE, RelayType.class));
                    }
                }
            }
        }
    }
    if (expectedResponseData.containsKey(PlatformKeys.KEY_PREFERRED_LINKTYPE) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.KEY_PREFERRED_LINKTYPE)) && configuration.getPreferredLinkType() != null) {
        assertThat(configuration.getPreferredLinkType()).isEqualTo(getEnum(expectedResponseData, PlatformKeys.KEY_PREFERRED_LINKTYPE, LinkType.class));
    }
    if (expectedResponseData.containsKey(PlatformKeys.OSGP_IP_ADDRESS) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.OSGP_IP_ADDRESS))) {
        assertThat(configuration.getOsgpIpAddress()).isEqualTo(getString(expectedResponseData, PlatformKeys.OSGP_IP_ADDRESS));
    }
    if (expectedResponseData.containsKey(PlatformKeys.OSGP_PORT) && StringUtils.isNotBlank(expectedResponseData.get(PlatformKeys.OSGP_PORT))) {
        assertThat(configuration.getOsgpPortNumber()).isEqualTo(getInteger(expectedResponseData, PlatformKeys.OSGP_PORT));
    }
}
Also used : LightType(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.LightType) GetConfigurationAsyncRequest(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.GetConfigurationAsyncRequest) AsyncRequest(org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest) DaliConfiguration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DaliConfiguration) DaliConfiguration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DaliConfiguration) RelayConfiguration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayConfiguration) Configuration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.Configuration) ReadSettingsHelper.getString(org.opensmartgridplatform.cucumber.core.ReadSettingsHelper.getString) GetConfigurationResponse(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.GetConfigurationResponse) IndexAddressMap(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.IndexAddressMap) GetConfigurationAsyncRequest(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.GetConfigurationAsyncRequest) RelayType(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayType) OsgpResultType(org.opensmartgridplatform.adapter.ws.schema.core.common.OsgpResultType) RelayConfiguration(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayConfiguration) RelayMap(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap) LinkType(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.LinkType) Then(io.cucumber.java.en.Then)

Example 3 with RelayMap

use of org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap in project open-smart-grid-platform by OSGP.

the class ConfigurationManagementMapperTest method aSourceRelayMap.

private RelayMap aSourceRelayMap(final int index, final int address) {
    final RelayMap relayMap = new RelayMap();
    relayMap.setIndex(index);
    relayMap.setAddress(address);
    return relayMap;
}
Also used : RelayMap(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap)

Aggregations

RelayMap (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayMap)3 RelayConfiguration (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayConfiguration)2 ReadSettingsHelper.getString (org.opensmartgridplatform.cucumber.core.ReadSettingsHelper.getString)2 Then (io.cucumber.java.en.Then)1 AsyncRequest (org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest)1 OsgpResultType (org.opensmartgridplatform.adapter.ws.schema.core.common.OsgpResultType)1 Configuration (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.Configuration)1 DaliConfiguration (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DaliConfiguration)1 GetConfigurationAsyncRequest (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.GetConfigurationAsyncRequest)1 GetConfigurationResponse (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.GetConfigurationResponse)1 IndexAddressMap (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.IndexAddressMap)1 LightType (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.LightType)1 LinkType (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.LinkType)1 RelayType (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.RelayType)1