use of site.model.Session in project jprime by bgjug.
the class SessionControllerTest method shouldChangeSessionType.
@Test
public void shouldChangeSessionType() throws Exception {
mockMvc.perform(post("/admin/session/add").param("submission", "").param("startTime", "27.05.2017 10:15").param("endTime", "27.05.2017 11:15").param("title", "Opening").param("hall", "").param("id", bootSession.getId() + "")).andExpect(status().isFound()).andExpect(view().name("redirect:/admin/session/view"));
List<Session> sessions = sessionRepository.findAll();
assertThat(sessions.size(), is(1));
Session session = sessions.get(0);
assertNull(session.getSubmission());
assertThat(session.getStartTime(), is(new DateTime().withYear(2017).withMonthOfYear(5).withDayOfMonth(27).withHourOfDay(10).withMinuteOfHour(15).withSecondOfMinute(0).withMillisOfSecond(0)));
assertThat(session.getEndTime(), is(new DateTime().withYear(2017).withMonthOfYear(5).withDayOfMonth(27).withHourOfDay(11).withMinuteOfHour(15).withSecondOfMinute(0).withMillisOfSecond(0)));
assertNull(session.getHall());
assertThat(session.getTitle(), is("Opening"));
}
use of site.model.Session in project jprime by bgjug.
the class AdminSessionController method addSession.
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String addSession(@RequestParam String submission, @RequestParam @DateTimeFormat(pattern = "dd.MM.yyyy HH:mm") DateTime startTime, @RequestParam @DateTimeFormat(pattern = "dd.MM.yyyy HH:mm") DateTime endTime, @RequestParam String title, @RequestParam String hall, @RequestParam String id) {
Session session = new Session();
if (!"".equals(id)) {
session = adminFacade.findOneSession(Long.parseLong(id));
}
if (title != null && !title.equals("")) {
session.setTitle(title);
session.setSubmission(null);
session.setHall(null);
} else {
session.setSubmission(adminFacade.findOneSubmission(Long.parseLong(submission)));
session.setHall(adminFacade.findOneVenueHall(Long.parseLong(hall)));
session.setTitle(null);
}
session.setStartTime(startTime);
session.setEndTime(endTime);
adminFacade.saveSession(session);
return "redirect:/admin/session/view";
}
use of site.model.Session in project jprime by bgjug.
the class AgendaController method getById.
// read a single agenda post
@RequestMapping("/agenda/{id}")
public String getById(@PathVariable("id") final long id, Model model) {
Session talk = userService.findSessionTalk(id);
model.addAttribute("talk", talk);
return "/talk.jsp";
}
use of site.model.Session in project jprime by bgjug.
the class SessionControllerTest method setup.
@Before
public void setup() throws Exception {
mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();
this.forgeSubmission = submissionRepository.save(new Submission("Forge with me", "Forge is the best", SessionLevel.BEGINNER, SessionType.ConferenceSession, new Speaker("Ivan St.", "Ivanov", "ivan.st.ivanov@example.com", "The Forge Guy", "@forge", false, true)));
forgeSubmission.setStatus(SubmissionStatus.ACCEPTED);
Submission bootSubmission = submissionRepository.save(new Submission("Spring Boot", "Bootiful or what?", SessionLevel.BEGINNER, SessionType.ConferenceSession, new Speaker("Nayden", "Gochev", "nayden.gochev@example.com", "The Spring Guy", "@sprink", true, true)));
bootSubmission.setStatus(SubmissionStatus.ACCEPTED);
this.betaHall = venueHallRepository.save(new VenueHall("Beta", "600 seats"));
venueHallRepository.save(new VenueHall("Alpha", "400 seats"));
this.bootSession = sessionRepository.save(new Session(bootSubmission, DateTime.now(), DateTime.now(), betaHall));
}
use of site.model.Session in project jprime by bgjug.
the class SessionControllerTest method shouldAddNewSession.
@Test
public void shouldAddNewSession() throws Exception {
mockMvc.perform(post("/admin/session/add").param("submission", forgeSubmission.getId() + "").param("startTime", "26.05.2017 10:15").param("endTime", "26.05.2017 11:15").param("title", "").param("hall", betaHall.getId() + "").param("id", "")).andExpect(status().isFound()).andExpect(view().name("redirect:/admin/session/view"));
List<Session> sessions = sessionRepository.findAll();
assertThat(sessions.size(), is(2));
Session session = sessions.get(1);
assertThat(session.getSubmission().getTitle(), is(forgeSubmission.getTitle()));
assertThat(session.getStartTime(), is(new DateTime().withYear(2017).withMonthOfYear(5).withDayOfMonth(26).withHourOfDay(10).withMinuteOfHour(15).withSecondOfMinute(0).withMillisOfSecond(0)));
assertThat(session.getEndTime(), is(new DateTime().withYear(2017).withMonthOfYear(5).withDayOfMonth(26).withHourOfDay(11).withMinuteOfHour(15).withSecondOfMinute(0).withMillisOfSecond(0)));
assertThat(session.getHall().getName(), is(betaHall.getName()));
assertTrue(session.getTitle().startsWith(session.getSubmission().getTitle()) && session.getTitle().endsWith(session.getSubmission().getSpeaker().getLastName()));
}
Aggregations