use of org.openkilda.messaging.ctrl.DumpStateResponseData in project open-kilda by telstra.
the class DumpStateAction method handle.
@Override
protected void handle() throws MessageFormatException, UnsupportedActionException, JsonProcessingException {
AbstractDumpState state = getMaster().getBolt().dumpState();
TopologyContext context = getBolt().getContext();
emitResponse(new DumpStateResponseData(context.getThisComponentId(), context.getThisTaskId(), getMessage().getTopology(), state));
}
use of org.openkilda.messaging.ctrl.DumpStateResponseData in project open-kilda by telstra.
the class CacheTopologyTest method getNetworkDump.
private NetworkDump getNetworkDump(ConsumerRecord<String, String> raw) throws IOException {
Message responseGeneric = objectMapper.readValue(raw.value(), Message.class);
CtrlResponse response = (CtrlResponse) responseGeneric;
DumpStateResponseData data = (DumpStateResponseData) response.getData();
CacheBoltState cacheState = (CacheBoltState) data.getState();
return cacheState.getNetwork();
}
use of org.openkilda.messaging.ctrl.DumpStateResponseData in project open-kilda by telstra.
the class CacheTopologyTest method ctrlDumpHandler.
@Test
public void ctrlDumpHandler() throws Exception {
CtrlRequest request = new CtrlRequest("cachetopology/*", new RequestData("dump"), 1, "dump-correlation-id", Destination.WFM_CTRL);
sendMessage(request, topology.getConfig().getKafkaCtrlTopic());
ConsumerRecord<String, String> raw = ctrlConsumer.pollMessage();
// TODO: FAILED
assertNotNull(raw);
assertNotNull(raw.value());
Message responseGeneric = objectMapper.readValue(raw.value(), Message.class);
CtrlResponse response = (CtrlResponse) responseGeneric;
ResponseData payload = response.getData();
assertEquals(request.getCorrelationId(), response.getCorrelationId());
assertEquals(CacheTopology.BOLT_ID_CACHE, payload.getComponent());
assertTrue(payload instanceof DumpStateResponseData);
}
use of org.openkilda.messaging.ctrl.DumpStateResponseData in project open-kilda by telstra.
the class FlowTopologyTest method ctrlDumpHandler.
@Test
@Ignore("Not reliable during batch run")
public void ctrlDumpHandler() throws Exception {
CtrlRequest request = new CtrlRequest("flowtopology/" + ComponentType.CRUD_BOLT.toString(), new RequestData("dump"), 1, "dump-correlation-id", Destination.WFM_CTRL);
sendMessage(request, flowTopology.getConfig().getKafkaFlowTopic());
ConsumerRecord<String, String> raw = ctrlConsumer.pollMessage();
assertNotNull(raw);
assertNotNull(raw.value());
Message responseGeneric = objectMapper.readValue(raw.value(), Message.class);
CtrlResponse response = (CtrlResponse) responseGeneric;
ResponseData payload = response.getData();
assertEquals(request.getCorrelationId(), response.getCorrelationId());
assertEquals(ComponentType.CRUD_BOLT.toString(), payload.getComponent());
assertTrue(payload instanceof DumpStateResponseData);
}
Aggregations