Package org.jasig.portal.events.aggr.dao.jpa

Source Code of org.jasig.portal.events.aggr.dao.jpa.QuarterDetailsImplTest

/**
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Jasig licenses this file to you 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 org.jasig.portal.events.aggr.dao.jpa;

import static org.junit.Assert.assertEquals;

import java.util.Iterator;
import java.util.List;

import org.jasig.portal.events.aggr.EventDateTimeUtils;
import org.jasig.portal.events.aggr.QuarterDetail;
import org.joda.time.DateTime;
import org.joda.time.MonthDay;
import org.junit.Test;

import com.google.common.collect.ImmutableList;

/**
* @author Eric Dalquist
* @version $Revision$
*/
public class QuarterDetailsImplTest {
   
    @Test
    public void testOrder() {
        List<QuarterDetail> quarters = createStandardQuarters();
        verifyOrder(quarters);
       
        quarters = createOffsetQuarters();
        verifyOrder(quarters);
    }

    protected void verifyOrder(List<QuarterDetail> quarters) {
        final Iterator<QuarterDetail> itr = quarters.iterator();
        assertEquals(0, itr.next().getQuarterId());
        assertEquals(1, itr.next().getQuarterId());
        assertEquals(2, itr.next().getQuarterId());
        assertEquals(3, itr.next().getQuarterId());
    }
   
    @Test
    public void testCompareToInstant() {
        List<QuarterDetail> quarters = createStandardQuarters();
       
        verifyCompareToInstant(new DateTime(2012, 1, 1, 0, 0),              quarters,  0111);
        verifyCompareToInstant(new DateTime(2012, 2, 29, 15, 48),           quarters,  0111);
        verifyCompareToInstant(new DateTime(2012, 4, 29, 15, 48),           quarters, -1011);
        verifyCompareToInstant(new DateTime(2012, 8, 29, 15, 48),           quarters, -1, -101);
        verifyCompareToInstant(new DateTime(2012, 12, 31, 23, 59, 59, 999), quarters, -1, -1, -10);
       
       
        quarters = createOffsetQuarters();
       
        verifyCompareToInstant(new DateTime(2012, 1, 1, 0, 0),              quarters,  1101);
        verifyCompareToInstant(new DateTime(2012, 2, 29, 15, 48),           quarters,  1110);
        verifyCompareToInstant(new DateTime(2012, 4, 29, 15, 48),           quarters,  1110);
        verifyCompareToInstant(new DateTime(2012, 8, 29, 15, 48),           quarters, -101,  -1);
        verifyCompareToInstant(new DateTime(2012, 12, 31, 23, 59, 59, 999), quarters, -1, -10,  -1);
    }
    protected void verifyCompareToInstant(DateTime dt, List<QuarterDetail> quarters, int... contains) {
        final Iterator<QuarterDetail> itr = quarters.iterator();
        for (int q = 0; q < 4; q++) {
            final QuarterDetail quarter = itr.next();
            assertEquals(q + ": " + dt + " is not between " + quarter.getStart() + " and " + quarter.getEnd(), contains[q], quarter.compareTo(dt));
        }
    }
   
    @Test
    public void testValidateQuarters() {
        EventDateTimeUtils.validateQuarters(createStandardQuarters());
       
        EventDateTimeUtils.validateQuarters(createOffsetQuarters());
    }

    protected List<QuarterDetail> createStandardQuarters() {
        return EventDateTimeUtils.createStandardQuarters();
    }

    protected List<QuarterDetail> createOffsetQuarters() {
        return ImmutableList.<QuarterDetail>of(
                new QuarterDetailImpl(new MonthDay(5, 1), new MonthDay(8, 1), 0),
                new QuarterDetailImpl(new MonthDay(8, 1), new MonthDay(11, 1), 1),
                new QuarterDetailImpl(new MonthDay(11, 1), new MonthDay(2, 1), 2),
                new QuarterDetailImpl(new MonthDay(2, 1), new MonthDay(5, 1), 3)
                );
    }
}
TOP

Related Classes of org.jasig.portal.events.aggr.dao.jpa.QuarterDetailsImplTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.