use of org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest in project open-smart-grid-platform by OSGP.
the class GetConfigurationSteps method thePlatformBuffersAGetConfigurationResponseMessageForDeviceContainsSoapFault.
@Then("^the platform buffers a get configuration response message for device \"([^\"]*)\" contains soap fault$")
public void thePlatformBuffersAGetConfigurationResponseMessageForDeviceContainsSoapFault(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);
Wait.until(() -> {
GetConfigurationResponse response = null;
try {
response = this.client.getGetConfiguration(request);
} catch (final Exception e) {
// do nothing
}
assertThat(response).isNotNull();
});
}
use of org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest in project open-smart-grid-platform by OSGP.
the class UpdateFirmwareSteps method thePlatformBuffersAUpdateFirmwareResponseMessage.
@Then("^the platform buffers a update firmware response message for device \"([^\"]*)\"$")
public void thePlatformBuffersAUpdateFirmwareResponseMessage(final String deviceIdentification, final Map<String, String> expectedResult) throws Throwable {
final UpdateFirmwareAsyncRequest request = new UpdateFirmwareAsyncRequest();
final AsyncRequest asyncRequest = new AsyncRequest();
asyncRequest.setDeviceId(deviceIdentification);
asyncRequest.setCorrelationUid((String) ScenarioContext.current().get(PlatformPubliclightingKeys.KEY_CORRELATION_UID));
request.setAsyncRequest(asyncRequest);
Wait.until(() -> {
UpdateFirmwareResponse response = null;
try {
response = this.client.getUpdateFirmware(request);
} catch (final Exception e) {
// do nothing
}
assertThat(response).isNotNull();
assertThat(response.getResult()).isEqualTo(Enum.valueOf(OsgpResultType.class, expectedResult.get(PlatformPubliclightingKeys.KEY_RESULT)));
});
}
use of org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest in project open-smart-grid-platform by OSGP.
the class StartDeviceSteps method thePlatformBuffersNoStartDeviceTestResponseMessageForDevice.
@Then("^the platform buffers no start device test response message for device \"([^\"]*)\"$")
public void thePlatformBuffersNoStartDeviceTestResponseMessageForDevice(final String deviceIdentification) throws InterruptedException {
final StartDeviceTestAsyncRequest request = new StartDeviceTestAsyncRequest();
final AsyncRequest asyncRequest = new AsyncRequest();
asyncRequest.setDeviceId(deviceIdentification);
asyncRequest.setCorrelationUid((String) ScenarioContext.current().get(PlatformKeys.KEY_CORRELATION_UID));
request.setAsyncRequest(asyncRequest);
Wait.until(() -> {
StartDeviceTestResponse response = null;
try {
response = this.client.getStartDeviceTestResponse(request);
} catch (final Exception e) {
// do nothing
}
assertThat(response).isNotNull();
assertThat(response.getResult()).isNotEqualTo(OsgpResultType.NOT_FOUND);
});
}
use of org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest in project open-smart-grid-platform by OSGP.
the class StartDeviceSteps method thePlatformBuffersAStartDeviceResponseMessageForDevice.
@Then("^the platform buffers a start device response message for device \"([^\"]*)\"$")
public void thePlatformBuffersAStartDeviceResponseMessageForDevice(final String deviceIdentification, final Map<String, String> expectedResult) throws InterruptedException {
final StartDeviceTestAsyncRequest request = new StartDeviceTestAsyncRequest();
final AsyncRequest asyncRequest = new AsyncRequest();
asyncRequest.setDeviceId(deviceIdentification);
asyncRequest.setCorrelationUid((String) ScenarioContext.current().get(PlatformKeys.KEY_CORRELATION_UID));
request.setAsyncRequest(asyncRequest);
Wait.until(() -> {
StartDeviceTestResponse response = null;
try {
response = this.client.getStartDeviceTestResponse(request);
} catch (final Exception e) {
// do nothing
}
assertThat(response).isNotNull();
assertThat(response.getResult()).isEqualTo(getEnum(expectedResult, PlatformKeys.KEY_RESULT, OsgpResultType.class));
});
}
use of org.opensmartgridplatform.adapter.ws.schema.core.common.AsyncRequest in project open-smart-grid-platform by OSGP.
the class SetEventNotificationsSteps method thePlatformBuffersASetEventNotificationResponseMessageForDevice.
@Then("^the platform buffers a set event notification response message for device \"([^\"]*)\"")
public void thePlatformBuffersASetEventNotificationResponseMessageForDevice(final String deviceIdentification, final Map<String, String> expectedResult) throws Throwable {
final SetEventNotificationsAsyncRequest request = new SetEventNotificationsAsyncRequest();
final AsyncRequest asyncRequest = new AsyncRequest();
asyncRequest.setDeviceId(deviceIdentification);
asyncRequest.setCorrelationUid((String) ScenarioContext.current().get(PlatformKeys.KEY_CORRELATION_UID));
request.setAsyncRequest(asyncRequest);
Wait.until(() -> {
SetEventNotificationsResponse response = null;
try {
response = this.client.getSetEventNotificationsResponse(request);
} catch (final Exception e) {
// do nothing
}
assertThat(response).isNotNull();
assertThat(response.getResult()).isEqualTo(Enum.valueOf(OsgpResultType.class, expectedResult.get(PlatformKeys.KEY_RESULT)));
});
}
Aggregations