All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.widgets.serialdate.TestSerialDateBeanWorkingDays Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

The newest version!
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.widgets.serialdate;

import org.opencms.acacia.shared.I_CmsSerialDateValue.EndType;
import org.opencms.test.OpenCmsTestCase;

import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Iterator;
import java.util.List;
import java.util.SortedSet;
import java.util.TreeSet;

/** Test cases for @{link org.opencms.widgets.serialdate.CmsSerialDateBeanDaily}. */
public class TestSerialDateBeanWorkingDays extends OpenCmsTestCase {

    /** empty sorted set of dates. */
    private static final SortedSet EMPTY_SORTED_SET_DATES = new TreeSet<>();

    /** Several tests for @{link org.opencms.widgets.serialdate.I_CmsSerialDateBean#getDates}. */
    public void testGetDates() {

        Calendar startDate = new GregorianCalendar(2017, 05, 28, 15, 05); // 28.06.2017 15:05 Mi
        Calendar endDate = new GregorianCalendar(2017, 05, 28, 16, 35); // 28.06.2017 16:35 Mi
        Calendar serialEndDate = new GregorianCalendar(2017, 06, 03, 01, 35); // 03.07.2017 01:35 Mo
        Calendar date1 = startDate;
        Calendar date2 = new GregorianCalendar(2017, 05, 29, 15, 05); // 29.06.2017 15:05 Do
        Calendar date3 = new GregorianCalendar(2017, 05, 30, 15, 05); // 30.06.2017 15:05 Fr
        Calendar date4 = new GregorianCalendar(2017, 06, 01, 15, 05); // 01.07.2017 15:05 Sa
        Calendar date5 = new GregorianCalendar(2017, 06, 02, 15, 05); // 02.07.2017 15:05 So
        Calendar date6 = new GregorianCalendar(2017, 06, 03, 15, 05); // 03.07.2017 15:05 Mo
        List dates = new ArrayList<>(6);
        dates.add(date1);
        dates.add(date2);
        dates.add(date3);
        dates.add(date4);
        dates.add(date5);
        dates.add(date6);

        // the tested bean
        CmsSerialDateBeanWorkingDays dailyBean = null;
        //the dates the bean yields
        Collection beanDates = null;

        // every workingday till end date
        dailyBean = new CmsSerialDateBeanWorkingDays(
            startDate.getTime(),
            endDate.getTime(),
            false,
            EndType.DATE,
            serialEndDate.getTime(),
            0,
            EMPTY_SORTED_SET_DATES);
        beanDates = dailyBean.getDatesAsLong();
        Iterator it = beanDates.iterator();
        assertEquals("There should be four dates", 4, beanDates.size());
        assertEquals(dates.get(0).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(1).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(2).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(5).getTimeInMillis(), it.next().longValue());

        // every workingday max. 4 occurrences
        dailyBean = new CmsSerialDateBeanWorkingDays(
            startDate.getTime(),
            endDate.getTime(),
            false,
            EndType.TIMES,
            null,
            4,
            EMPTY_SORTED_SET_DATES);
        beanDates = dailyBean.getDatesAsLong();
        it = beanDates.iterator();
        assertEquals("There should be four dates", 4, beanDates.size());
        assertEquals(dates.get(0).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(1).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(2).getTimeInMillis(), it.next().longValue());
        assertEquals(dates.get(5).getTimeInMillis(), it.next().longValue());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy