Search in sources :

Example 21 with HourType

use of com.artezio.arttime.datamodel.HourType in project ART-TIME by Artezio.

the class HourTypeRepositoryTest method testGetAll.

@Test
public void testGetAll() {
    HourType hourType1 = new HourType();
    HourType hourType2 = new HourType();
    hourType1.setType("day off");
    hourType2.setType("over time");
    entityManager.persist(hourType1);
    entityManager.persist(hourType2);
    List<HourType> actuals = hourTypeRepository.getAll();
    assertEquals(2, actuals.size());
    assertTrue(actuals.contains(hourType1));
    assertTrue(actuals.contains(hourType2));
}
Also used : HourType(com.artezio.arttime.datamodel.HourType) Test(org.junit.Test)

Example 22 with HourType

use of com.artezio.arttime.datamodel.HourType in project ART-TIME by Artezio.

the class HoursRepositoryTest method testFindHours.

@Test
public void testFindHours() throws Exception {
    Employee employee = new Employee("employ");
    Project project = new Project();
    project.setCode("PrCode");
    HourType hourType = new HourType();
    Date date = getOffsetDate(1);
    Hours expected = new Hours(project, date, employee, hourType);
    entityManager.persist(project);
    entityManager.persist(employee);
    entityManager.persist(hourType);
    entityManager.persist(expected);
    Hours actual = hoursRepository.findHours(employee.getUserName(), project.getCode(), hourType.getId(), date);
    assertEquals(expected, actual);
}
Also used : Project(com.artezio.arttime.datamodel.Project) Employee(com.artezio.arttime.datamodel.Employee) HourType(com.artezio.arttime.datamodel.HourType) Hours(com.artezio.arttime.datamodel.Hours) Date(java.util.Date) CalendarUtils.getOffsetDate(com.artezio.arttime.test.utils.CalendarUtils.getOffsetDate) Test(org.junit.Test)

Example 23 with HourType

use of com.artezio.arttime.datamodel.HourType in project ART-TIME by Artezio.

the class HoursRepositoryTest method testRemove.

@Test
public void testRemove() throws Exception {
    Employee employee = new Employee("employe");
    Project project = new Project();
    HourType hourType = new HourType();
    Hours hours = new Hours(project, sdf.parse("1-01-2015"), employee, hourType);
    entityManager.persist(project);
    entityManager.persist(employee);
    entityManager.persist(hourType);
    entityManager.persist(hours);
    hoursRepository.remove(hours);
    Hours actual = entityManager.find(Hours.class, hours.getId());
    assertNull(actual);
}
Also used : Project(com.artezio.arttime.datamodel.Project) Employee(com.artezio.arttime.datamodel.Employee) HourType(com.artezio.arttime.datamodel.HourType) Hours(com.artezio.arttime.datamodel.Hours) Test(org.junit.Test)

Example 24 with HourType

use of com.artezio.arttime.datamodel.HourType in project ART-TIME by Artezio.

the class HoursRepositoryTest method testGetActualHours_ifHoursForFinishPeriod.

@Test
public void testGetActualHours_ifHoursForFinishPeriod() throws NoSuchFieldException {
    Date start = new Date();
    Date finish = getOffsetDate(2);
    Period period = new Period(start, finish);
    Employee employee = new Employee("employee");
    Project project = new Project();
    HourType actualType = new HourType("actual type");
    actualType.setActualTime(true);
    BigDecimal quantity = new BigDecimal(8);
    Hours hours = createHours(project, employee, finish, actualType, quantity);
    entityManager.persist(employee);
    entityManager.persist(project);
    entityManager.persist(actualType);
    entityManager.persist(hours);
    List<Hours> actuals = hoursRepository.getActualHours(Collections.singletonList(employee), period, false);
    assertEquals(Collections.singletonList(hours), actuals);
}
Also used : Project(com.artezio.arttime.datamodel.Project) Employee(com.artezio.arttime.datamodel.Employee) HourType(com.artezio.arttime.datamodel.HourType) Hours(com.artezio.arttime.datamodel.Hours) Period(com.artezio.arttime.datamodel.Period) CalendarUtils.createPeriod(com.artezio.arttime.test.utils.CalendarUtils.createPeriod) Date(java.util.Date) CalendarUtils.getOffsetDate(com.artezio.arttime.test.utils.CalendarUtils.getOffsetDate) BigDecimal(java.math.BigDecimal) Test(org.junit.Test)

Example 25 with HourType

use of com.artezio.arttime.datamodel.HourType in project ART-TIME by Artezio.

the class HoursRepositoryTest method testGetActualHoursLists.

@Test
public void testGetActualHoursLists() {
    Date start = new Date();
    Date finish = getOffsetDate(2);
    Period period = new Period(start, finish);
    Employee employee1 = new Employee("employee1");
    Employee employee2 = new Employee("employee2");
    Employee employee3 = new Employee("employee3");
    Project project = new Project();
    HourType actualType = new HourType("actual type");
    actualType.setActualTime(true);
    BigDecimal quantity = new BigDecimal(8);
    Hours hours1 = createHours(project, employee1, getOffsetDate(1), actualType, quantity);
    Hours hours2 = createHours(project, employee1, getOffsetDate(2), actualType, quantity);
    Hours hours3 = createHours(project, employee2, getOffsetDate(0), actualType, quantity);
    hours1.setApproved(true);
    hours2.setApproved(false);
    hours3.setApproved(true);
    entityManager.persist(employee1);
    entityManager.persist(employee2);
    entityManager.persist(employee3);
    entityManager.persist(project);
    entityManager.persist(actualType);
    entityManager.persist(hours1);
    entityManager.persist(hours2);
    entityManager.persist(hours3);
    List<Employee> employees = asList(employee1, employee2, employee3);
    Map<Employee, List<Hours>> actualHours = hoursRepository.getActualHoursLists(employees, period, false);
    Map<Employee, List<Hours>> approvedActualHours = hoursRepository.getActualHoursLists(employees, period, true);
    ListAssert.assertEquals(asList(hours1, hours2), actualHours.get(employee1));
    ListAssert.assertEquals(Collections.singletonList(hours3), actualHours.get(employee2));
    assertTrue(actualHours.get(employee3).isEmpty());
    ListAssert.assertEquals(Collections.singletonList(hours1), approvedActualHours.get(employee1));
    ListAssert.assertEquals(Collections.singletonList(hours3), approvedActualHours.get(employee2));
    assertTrue(approvedActualHours.get(employee3).isEmpty());
}
Also used : Project(com.artezio.arttime.datamodel.Project) Employee(com.artezio.arttime.datamodel.Employee) HourType(com.artezio.arttime.datamodel.HourType) Hours(com.artezio.arttime.datamodel.Hours) Period(com.artezio.arttime.datamodel.Period) CalendarUtils.createPeriod(com.artezio.arttime.test.utils.CalendarUtils.createPeriod) ArrayList(java.util.ArrayList) Arrays.asList(java.util.Arrays.asList) List(java.util.List) Date(java.util.Date) CalendarUtils.getOffsetDate(com.artezio.arttime.test.utils.CalendarUtils.getOffsetDate) BigDecimal(java.math.BigDecimal) Test(org.junit.Test)

Aggregations

HourType (com.artezio.arttime.datamodel.HourType)172 Test (org.junit.Test)158 Project (com.artezio.arttime.datamodel.Project)120 Employee (com.artezio.arttime.datamodel.Employee)115 Hours (com.artezio.arttime.datamodel.Hours)103 Date (java.util.Date)60 CalendarUtils.getOffsetDate (com.artezio.arttime.test.utils.CalendarUtils.getOffsetDate)54 Period (com.artezio.arttime.datamodel.Period)45 BigDecimal (java.math.BigDecimal)41 CalendarUtils.createPeriod (com.artezio.arttime.test.utils.CalendarUtils.createPeriod)21 HashMap (java.util.HashMap)16 HoursRepository (com.artezio.arttime.repositories.HoursRepository)13 Map (java.util.Map)11 Arrays.asList (java.util.Arrays.asList)10 List (java.util.List)10 Filter (com.artezio.arttime.filter.Filter)7 Mail (com.artezio.arttime.services.mailing.Mail)7 ArrayList (java.util.ArrayList)7 HourTypeRepository (com.artezio.arttime.repositories.HourTypeRepository)6 RangePeriodSelector (com.artezio.arttime.web.criteria.RangePeriodSelector)6