use of eu.europa.ec.fisheries.uvms.reporting.service.dto.MovementDTO in project UVMS-Docker by UnionVMS.
the class MovementMovementRestIT method getLatestMovementsByConnectIdsTest.
/**
* Gets the latest movements by connect ids test.
*
* @return the latest movements by connect ids test
* @throws Exception
* the exception
*/
@Test
public void getLatestMovementsByConnectIdsTest() throws Exception {
Asset testAsset = AssetTestHelper.createTestAsset();
MobileTerminalType mobileTerminalType = MobileTerminalTestHelper.createMobileTerminalType();
MobileTerminalTestHelper.assignMobileTerminal(testAsset, mobileTerminalType);
LatLong latLong = new LatLong(16.9, 32.6333333, new Date(System.currentTimeMillis()));
CreateMovementRequest createMovementRequest = movementHelper.createMovementRequest(testAsset, mobileTerminalType, latLong);
CreateMovementResponse createMovementResponse = movementHelper.createMovement(testAsset, mobileTerminalType, createMovementRequest);
List<String> connectIds = new ArrayList<>();
assertNotNull(createMovementResponse);
assertNotNull(createMovementResponse.getMovement());
assertNotNull(createMovementResponse.getMovement().getConnectId());
String connectId = createMovementResponse.getMovement().getConnectId();
connectIds.add(connectId);
// give it some time to execute before retrieving TODO: Remove the functionality and this horrible test
Thread.sleep(10000);
final HttpResponse response = Request.Post(getBaseUrl() + "movement/rest/movement/latest").setHeader("Content-Type", "application/json").setHeader("Authorization", getValidJwtToken()).bodyByteArray(writeValueAsString(connectIds).getBytes()).execute().returnResponse();
List<MovementDTO> dataList = checkSuccessResponseReturnType(response, ArrayList.class);
assertTrue(dataList.size() > 0);
}
Aggregations