use of org.openlmis.stockmanagement.testutils.StockCardSummariesV2SearchParamsDataBuilder in project openlmis-stockmanagement by OpenLMIS.
the class StockCardSummariesServiceTest method shouldThrowExceptionIfNoPermission.
@Test(expected = PermissionMessageException.class)
public void shouldThrowExceptionIfNoPermission() {
StockCardSummariesV2SearchParams params = new StockCardSummariesV2SearchParamsDataBuilder().build();
doThrow(new PermissionMessageException(new Message("no permission"))).when(permissionService).canViewStockCard(params.getProgramId(), params.getFacilityId());
stockCardSummariesService.findStockCards(params);
}
use of org.openlmis.stockmanagement.testutils.StockCardSummariesV2SearchParamsDataBuilder in project openlmis-stockmanagement by OpenLMIS.
the class StockCardSummariesV2SearchParamsTest method shouldImplementToString.
@Test
public void shouldImplementToString() {
StockCardSummariesV2SearchParams params = new StockCardSummariesV2SearchParamsDataBuilder().build();
ToStringTestUtils.verify(StockCardSummariesV2SearchParams.class, params);
}
use of org.openlmis.stockmanagement.testutils.StockCardSummariesV2SearchParamsDataBuilder in project openlmis-stockmanagement by OpenLMIS.
the class StockCardSummariesServiceTest method shouldFindStockCards.
@Test
public void shouldFindStockCards() throws Exception {
OrderableDto orderable = new OrderableDtoDataBuilder().build();
OrderableDto orderable2 = new OrderableDtoDataBuilder().build();
OrderableDto orderable3 = new OrderableDtoDataBuilder().build();
StockCardSummariesV2SearchParams params = new StockCardSummariesV2SearchParamsDataBuilder().withOrderableIds(asList(orderable.getId(), orderable2.getId())).build();
when(approvedProductReferenceDataService.getApprovedProducts(eq(params.getFacilityId()), eq(params.getProgramId()), eq(params.getOrderableIds()))).thenReturn(new PageImpl<>(asList(orderable, orderable2, orderable3), new PageRequest(0, Integer.MAX_VALUE), 3));
Map<UUID, OrderableFulfillDto> fulfillMap = new HashMap<>();
fulfillMap.put(orderable.getId(), new OrderableFulfillDtoDataBuilder().withCanFulfillForMe(asList(orderable2.getId(), orderable3.getId())).build());
fulfillMap.put(orderable2.getId(), new OrderableFulfillDtoDataBuilder().withCanFulfillForMe(asList(orderable.getId(), orderable3.getId())).build());
when(orderableFulfillReferenceDataService.findByIds(asList(orderable.getId(), orderable2.getId(), orderable3.getId()))).thenReturn(fulfillMap);
StockEvent event = new StockEventDataBuilder().withFacility(params.getFacilityId()).withProgram(params.getProgramId()).build();
StockCard stockCard = new StockCardDataBuilder(event).withOrderable(orderable.getId()).withStockOnHand(12).build();
StockCard stockCard1 = new StockCardDataBuilder(event).withOrderable(orderable3.getId()).withStockOnHand(26).build();
List<StockCard> stockCards = asList(stockCard, stockCard1);
when(cardRepository.findByProgramIdAndFacilityId(params.getProgramId(), params.getFacilityId())).thenReturn(stockCards);
StockCardSummaries result = stockCardSummariesService.findStockCards(params);
assertEquals(3, result.getPageOfApprovedProducts().size());
}
Aggregations