Search in sources :

Example 6 with Actorperformances

use of com.management.entities.Actorperformances in project Internet-Software-Architectures by zivko11.

the class ActorPerformancesManager method Read.

public ActorPerformancesDTO Read(int id) {
    ModelMapper mapper = new ModelMapper();
    ActorPerformancesDTO dto;
    try {
        Actorperformances actorPerformances = actorPerformancesRepository.findOne(id);
        dto = mapper.map(actorPerformances, ActorPerformancesDTO.class);
    } catch (Exception exc) {
        exc.printStackTrace();
        return null;
    }
    return dto;
}
Also used : Actorperformances(com.management.entities.Actorperformances) ActorPerformancesDTO(com.management.dto.ActorPerformancesDTO) ModelMapper(org.modelmapper.ModelMapper)

Example 7 with Actorperformances

use of com.management.entities.Actorperformances in project Internet-Software-Architectures by zivko11.

the class ActorPerformancesManager method Update.

public boolean Update(ActorPerformancesDTO dto) {
    ModelMapper mapper = new ModelMapper();
    Actorperformances tmp;
    try {
        tmp = mapper.map(dto, Actorperformances.class);
    } catch (Exception exc) {
        exc.printStackTrace();
        return false;
    }
    actorPerformancesRepository.save(tmp);
    return true;
}
Also used : Actorperformances(com.management.entities.Actorperformances) ModelMapper(org.modelmapper.ModelMapper)

Example 8 with Actorperformances

use of com.management.entities.Actorperformances in project Internet-Software-Architectures by zivko11.

the class ActorPerformancesControllerTests method ReadActorPerformances_ReturnsOK.

@Test
public void ReadActorPerformances_ReturnsOK() {
    // Arrange
    Mockery mock = new Mockery();
    actorReprformancesRepository = mock.mock(ActorPerformancesRepository.class);
    final Actorperformances ap = new Actorperformances();
    mock.checking(new Expectations() {

        {
            oneOf(actorReprformancesRepository).findOne(1);
            will(returnValue(ap));
        }
    });
    ActorPerformancesManager manager = new ActorPerformancesManager(actorReprformancesRepository);
    ActorPerformancesController controller = new ActorPerformancesController(manager);
    // Act
    ResponseEntity<ActorPerformancesDTO> response = controller.getActorPerformances(1);
    ActorPerformancesDTO dto = response.getBody();
    // Assert
    Assert.assertNotNull(controller);
    Assert.assertEquals(response, new ResponseEntity<ActorPerformancesDTO>(dto, HttpStatus.OK));
    mock.assertIsSatisfied();
}
Also used : Actorperformances(com.management.entities.Actorperformances) Expectations(org.jmock.Expectations) ActorPerformancesManager(com.management.managers.ActorPerformancesManager) ActorPerformancesRepository(com.management.repositories.ActorPerformancesRepository) Mockery(org.jmock.Mockery) ActorPerformancesDTO(com.management.dto.ActorPerformancesDTO) Test(org.junit.Test)

Example 9 with Actorperformances

use of com.management.entities.Actorperformances in project Internet-Software-Architectures by zivko11.

the class ActorPerformancesControllerTests method ReadAllActorPerformances_ReturnsOK.

@Test
public void ReadAllActorPerformances_ReturnsOK() {
    // Arrange
    Mockery mock = new Mockery();
    actorReprformancesRepository = mock.mock(ActorPerformancesRepository.class);
    final ArrayList<Actorperformances> list = new ArrayList<Actorperformances>();
    Actorperformances ap1 = new Actorperformances();
    Actorperformances ap2 = new Actorperformances();
    list.add(ap1);
    list.add(ap2);
    mock.checking(new Expectations() {

        {
            oneOf(actorReprformancesRepository).findAll();
            will(returnValue(list));
        }
    });
    ActorPerformancesManager manager = new ActorPerformancesManager(actorReprformancesRepository);
    ActorPerformancesController controller = new ActorPerformancesController(manager);
    // Act
    ResponseEntity<List<ActorPerformancesDTO>> response = controller.getActorPerformances();
    ArrayList<ActorPerformancesDTO> listDTO = (ArrayList<ActorPerformancesDTO>) response.getBody();
    // Assert
    Assert.assertNotNull(controller);
    Assert.assertEquals(response, new ResponseEntity<List<ActorPerformancesDTO>>(listDTO, HttpStatus.OK));
    mock.assertIsSatisfied();
}
Also used : Actorperformances(com.management.entities.Actorperformances) Expectations(org.jmock.Expectations) ActorPerformancesManager(com.management.managers.ActorPerformancesManager) ActorPerformancesRepository(com.management.repositories.ActorPerformancesRepository) ArrayList(java.util.ArrayList) ArrayList(java.util.ArrayList) List(java.util.List) Mockery(org.jmock.Mockery) ActorPerformancesDTO(com.management.dto.ActorPerformancesDTO) Test(org.junit.Test)

Aggregations

Actorperformances (com.management.entities.Actorperformances)9 ActorPerformancesDTO (com.management.dto.ActorPerformancesDTO)7 Test (org.junit.Test)5 ActorPerformancesRepository (com.management.repositories.ActorPerformancesRepository)4 Expectations (org.jmock.Expectations)4 Mockery (org.jmock.Mockery)4 ModelMapper (org.modelmapper.ModelMapper)4 ArrayList (java.util.ArrayList)3 ActorPerformancesManager (com.management.managers.ActorPerformancesManager)2 ActorPerformancesRepositoryFake (com.management.fake.ActorPerformancesRepositoryFake)1 List (java.util.List)1