/* * Copyright 2000-2016 Vaadin Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.vaadin.tests.components.calendar; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import com.vaadin.server.VaadinRequest; import com.vaadin.tests.components.AbstractReindeerTestUI; import com.vaadin.v7.ui.Calendar; import com.vaadin.v7.ui.components.calendar.event.BasicEvent; import com.vaadin.v7.ui.components.calendar.event.CalendarEvent; import com.vaadin.v7.ui.components.calendar.event.CalendarEventProvider; /** * * @author Vaadin Ltd */ public class CalendarResizeOverlappingEvents extends AbstractReindeerTestUI { /* * (non-Javadoc) * * @see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server. * VaadinRequest) */ @Override protected void setup(VaadinRequest request) { Calendar calendar = new Calendar(new CalendarEventProvider() { @Override public List<CalendarEvent> getEvents(Date startDate, Date endDate) { DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); DateFormat dayFormat = new SimpleDateFormat("yyyy-MM-dd"); List<CalendarEvent> events = new ArrayList<>(); try { java.util.Calendar today = java.util.Calendar.getInstance(); String todayString = dayFormat.format(today.getTime()); Date date1 = format.parse(todayString + " 09:00:00"); Date date2 = format.parse(todayString + " 11:00:00"); Date date3 = format.parse(todayString + " 12:00:00"); Date date4 = format.parse(todayString + " 14:00:00"); Date date5 = format.parse(todayString + " 15:00:00"); Date date6 = format.parse(todayString + " 17:00:00"); CalendarEvent event1 = new BasicEvent("First", "", date1, date2); CalendarEvent event2 = new BasicEvent("Second", "", date3, date4); CalendarEvent event3 = new BasicEvent("Third", "", date5, date6); events.add(event1); events.add(event2); events.add(event3); } catch (ParseException e) { } return events; } }); calendar.setSizeFull(); setContent(calendar); } /* * (non-Javadoc) * * @see com.vaadin.tests.components.AbstractTestUI#getTestDescription() */ @Override protected String getTestDescription() { return "Verify the widths of the events are correctly recalculated when these are resized and overlapped"; } /* * (non-Javadoc) * * @see com.vaadin.tests.components.AbstractTestUI#getTicketNumber() */ @Override protected Integer getTicketNumber() { return 13961; } }