}
@Override
protected void renderResponse()
{
DataModel hotels = (DataModel) Contexts.getSessionContext().get("hotels");
assert hotels.getRowCount()==1;
assert ( (Hotel) hotels.getRowData() ).getCity().equals("NY");
assert getValue("#{hotelSearch.searchString}").equals("Union Square");
assert !Manager.instance().isLongRunningConversation();
}
}.run();
final String id = new FacesRequest("/main.xhtml") {
@Override
protected void invokeApplication()
{
HotelBooking hotelBooking = (HotelBooking) getInstance("hotelBooking");
DataModel hotels = (DataModel) Contexts.getSessionContext().get("hotels");
assert hotels.getRowCount()==1;
hotelBooking.selectHotel( (Hotel) hotels.getRowData() );
}
@Override
protected void renderResponse()
{
Hotel hotel = (Hotel) Contexts.getConversationContext().get("hotel");
assert hotel.getCity().equals("NY");
assert hotel.getZip().equals("10011");
assert Manager.instance().isLongRunningConversation();
}
}.run();
new FacesRequest("/hotel.xhtml", id) {
@Override
protected void invokeApplication()
{
invokeMethod("#{hotelBooking.bookHotel}");
}
@Override
protected void renderResponse()
{
assert getValue("#{booking.user}")!=null;
assert getValue("#{booking.hotel}")!=null;
assert getValue("#{booking.creditCard}")==null;
assert getValue("#{booking.creditCardName}")==null;
Booking booking = (Booking) Contexts.getConversationContext().get("booking");
assert booking.getHotel()==Contexts.getConversationContext().get("hotel");
assert booking.getUser()==Contexts.getSessionContext().get("user");
assert Manager.instance().isLongRunningConversation();
}
}.run();
new FacesRequest("/book.xhtml", id) {
@Override @SuppressWarnings("deprecation")
protected void updateModelValues()
{
Date now = new Date();
setValue("#{booking.checkinDate}", now);
setValue("#{booking.checkoutDate}", now);
}
@Override
protected void invokeApplication()
{
assert invokeMethod("#{hotelBooking.setBookingDates}")==null;
}
@Override
protected void renderResponse()
{
Iterator messages = FacesContext.getCurrentInstance().getMessages();
assert messages.hasNext();
FacesMessage message = (FacesMessage) messages.next();
assert message.getSummary().equals("Check out date must be later than check in date");
assert !messages.hasNext();
assert Manager.instance().isLongRunningConversation();
}
}.run();
new FacesRequest("/book.xhtml", id) {
@Override @SuppressWarnings("deprecation")
protected void updateModelValues()
{
Calendar cal = Calendar.getInstance();
cal.add(Calendar.DAY_OF_MONTH, 2);
setValue("#{booking.checkoutDate}", cal.getTime() );
}
@Override
protected void invokeApplication()
{
assert "rooms".equals(invokeMethod("#{hotelBooking.setBookingDates}"));
}
@Override
protected void renderResponse()
{
assert Manager.instance().isLongRunningConversation();
}
}.run();
new FacesRequest("/rooms.xhtml", id)
{
@Override
protected void renderResponse()
{
assert getValue("#{booking.user}")!=null;
assert getValue("#{booking.hotel}")!=null;
assert getValue("#{booking.checkinDate}")!=null;
assert getValue("#{booking.checkoutDate}")!=null;
assert getValue("#{booking.roomPreference}").equals(getValue("#{hotel.standardRoom}"));
assert getValue("#{booking.creditCard}")==null;
assert getValue("#{booking.creditCardName}")==null;
assert getValue("#{availableRooms.rowCount}").equals(new Integer(2));
DataModel availableRooms = (DataModel) getValue("#{availableRooms}");
availableRooms.setRowIndex(0);
assert "Cozy Room".equals(getValue("#{availableRooms.rowData.name}"));
availableRooms.setRowIndex(1);
assert "Spectacular Room".equals(getValue("#{availableRooms.rowData.name}"));
}
}.run();
final String nestedId = new FacesRequest("/rooms.xhtml", id)
{
@Override
protected void applyRequestValues()
{
DataModel availableRooms = (DataModel) getValue("#{availableRooms}");
availableRooms.setRowIndex(0);
}
@Override
protected void invokeApplication()
{