use of org.apache.metron.rest.model.TopologyStatus in project metron by apache.
the class StormStatusServiceImplTest method getTopologyStatusShouldReturnTopologyStatus.
@Test
public void getTopologyStatusShouldReturnTopologyStatus() throws Exception {
final TopologyStatus topologyStatus = new TopologyStatus();
topologyStatus.setStatus(TopologyStatusCode.STARTED);
topologyStatus.setName("bro");
topologyStatus.setId("bro_id");
final TopologySummary topologySummary = new TopologySummary();
topologySummary.setTopologies(new TopologyStatus[] { topologyStatus });
when(environment.getProperty(STORM_UI_SPRING_PROPERTY)).thenReturn(HTTP_STORM_UI);
when(restTemplate.getForObject(HTTP_STORM_UI + TOPOLOGY_SUMMARY_URL, TopologySummary.class)).thenReturn(topologySummary);
when(restTemplate.getForObject(HTTP_STORM_UI + TOPOLOGY_URL + "/bro_id", TopologyStatus.class)).thenReturn(topologyStatus);
TopologyStatus expected = new TopologyStatus();
expected.setStatus(TopologyStatusCode.STARTED);
expected.setName("bro");
expected.setId("bro_id");
TopologyStatus actual = stormStatusService.getTopologyStatus("bro");
assertEquals(expected, actual);
assertEquals(expected.hashCode(), actual.hashCode());
}
use of org.apache.metron.rest.model.TopologyStatus in project metron by apache.
the class StormStatusServiceImpl method getTopologyStatus.
@Override
public TopologyStatus getTopologyStatus(String name) {
TopologyStatus topologyResponse = null;
String id = getTopologyId(name);
if (id != null) {
topologyResponse = restTemplate.getForObject(getStormUiProperty() + TOPOLOGY_URL + "/" + id, TopologyStatus.class);
}
return topologyResponse;
}
Aggregations