Search in sources :

Example 1 with MeetingMemberDTO

use of org.apache.openmeetings.db.dto.calendar.MeetingMemberDTO in project openmeetings by apache.

the class TestCalendarService method createEventWithGuests.

private static AppointmentDTO createEventWithGuests(String sid) throws Exception {
    JSONObject o = createAppointment("test").put("meetingMembers", new JSONArray().put(new JSONObject().put("user", new JSONObject().put("firstname", "John 1").put("lastname", "Doe").put("address", new JSONObject().put("email", "john1@doe.email")))).put(new JSONObject().put("user", new JSONObject().put("firstname", "John 2").put("lastname", "Doe").put("address", new JSONObject().put("email", "john2@doe.email")))));
    Response resp = getClient(getCalendarUrl()).path("/").query("sid", sid).form(new Form().param("appointment", o.toString()));
    assertNotNull("Valid AppointmentDTO should be returned", resp);
    assertEquals("Call should be successful", Response.Status.OK.getStatusCode(), resp.getStatus());
    AppointmentDTO dto = resp.readEntity(AppointmentDTO.class);
    assertNotNull("Valid DTO should be returned", dto);
    assertNotNull("DTO id should be valid", dto.getId());
    assertEquals("DTO should have 2 attendees", 2, dto.getMeetingMembers().size());
    for (MeetingMemberDTO mm : dto.getMeetingMembers()) {
        assertNotNull("Email should be valid", mm.getUser().getAddress().getEmail());
    }
    return dto;
}
Also used : Response(javax.ws.rs.core.Response) JSONObject(com.github.openjson.JSONObject) Form(javax.ws.rs.core.Form) JSONArray(com.github.openjson.JSONArray) AppointmentDTO(org.apache.openmeetings.db.dto.calendar.AppointmentDTO) MeetingMemberDTO(org.apache.openmeetings.db.dto.calendar.MeetingMemberDTO)

Example 2 with MeetingMemberDTO

use of org.apache.openmeetings.db.dto.calendar.MeetingMemberDTO in project openmeetings by apache.

the class TestCalendarService method testCreateWithGuestsCleanOne.

@Test
public void testCreateWithGuestsCleanOne() throws Exception {
    String sid = loginNewUser();
    AppointmentDTO dto = createEventWithGuests(sid);
    List<MeetingMemberDTO> initialList = new ArrayList<>(dto.getMeetingMembers());
    MeetingMemberDao mmDao = getBean(MeetingMemberDao.class);
    MeetingMember mm = mmDao.get(initialList.get(initialList.size() - 1).getId());
    Long mmId = mm.getId(), mmUserId = mm.getUser().getId();
    String hash = mm.getInvitation().getHash();
    dto.getMeetingMembers().remove(initialList.size() - 1);
    // try to change MM list
    JSONObject o = AppointmentParamConverter.json(dto);
    Response resp = getClient(getCalendarUrl()).path("/").query("sid", sid).form(new Form().param("appointment", o.toString()));
    assertNotNull("Valid AppointmentDTO should be returned", resp);
    assertEquals("Call should be successful", Response.Status.OK.getStatusCode(), resp.getStatus());
    dto = resp.readEntity(AppointmentDTO.class);
    assertNotNull("Valid DTO should be returned", dto);
    assertNotNull("DTO id should be valid", dto.getId());
    assertEquals("DTO should have 1 attendees", 1, dto.getMeetingMembers().size());
    assertNull("Meeting member should deleted", mmDao.get(mmId));
    assertNull("Invitation should deleted", getBean(InvitationDao.class).getByHash(hash, true, false));
    User uc = getBean(UserDao.class).get(mmUserId);
    assertNotNull("Meeting member user should not be deleted", uc);
    assertFalse("Meeting member user should not be deleted", uc.isDeleted());
}
Also used : User(org.apache.openmeetings.db.entity.user.User) AbstractJUnitDefaults.createUser(org.apache.openmeetings.AbstractJUnitDefaults.createUser) GroupUser(org.apache.openmeetings.db.entity.user.GroupUser) AbstractJUnitDefaults.getUser(org.apache.openmeetings.AbstractJUnitDefaults.getUser) Form(javax.ws.rs.core.Form) ArrayList(java.util.ArrayList) MeetingMember(org.apache.openmeetings.db.entity.calendar.MeetingMember) MeetingMemberDao(org.apache.openmeetings.db.dao.calendar.MeetingMemberDao) Response(javax.ws.rs.core.Response) JSONObject(com.github.openjson.JSONObject) UserDao(org.apache.openmeetings.db.dao.user.UserDao) AppointmentDTO(org.apache.openmeetings.db.dto.calendar.AppointmentDTO) MeetingMemberDTO(org.apache.openmeetings.db.dto.calendar.MeetingMemberDTO) Test(org.junit.Test)

Aggregations

JSONObject (com.github.openjson.JSONObject)2 Form (javax.ws.rs.core.Form)2 Response (javax.ws.rs.core.Response)2 AppointmentDTO (org.apache.openmeetings.db.dto.calendar.AppointmentDTO)2 MeetingMemberDTO (org.apache.openmeetings.db.dto.calendar.MeetingMemberDTO)2 JSONArray (com.github.openjson.JSONArray)1 ArrayList (java.util.ArrayList)1 AbstractJUnitDefaults.createUser (org.apache.openmeetings.AbstractJUnitDefaults.createUser)1 AbstractJUnitDefaults.getUser (org.apache.openmeetings.AbstractJUnitDefaults.getUser)1 MeetingMemberDao (org.apache.openmeetings.db.dao.calendar.MeetingMemberDao)1 UserDao (org.apache.openmeetings.db.dao.user.UserDao)1 MeetingMember (org.apache.openmeetings.db.entity.calendar.MeetingMember)1 GroupUser (org.apache.openmeetings.db.entity.user.GroupUser)1 User (org.apache.openmeetings.db.entity.user.User)1 Test (org.junit.Test)1