Package net.sourceforge.ganttproject.test.time

Source Code of net.sourceforge.ganttproject.test.time.TestWeekFramer

/*
* Created on 08.11.2004
*/
package net.sourceforge.ganttproject.test.time;

import java.util.Calendar;
import java.util.Date;

import net.sourceforge.ganttproject.time.gregorian.WeekFramerImpl;
import junit.framework.TestCase;

/**
* @author bard
*/
public class TestWeekFramer extends TestCase {
    public void testAdjustLeft() {
        WeekFramerImpl framer = new WeekFramerImpl();
        Date adjusted = framer.adjustLeft(newMonday());
        Calendar c = (Calendar) Calendar.getInstance().clone();
        c.setTime(adjusted);
        c.add(Calendar.MILLISECOND, -1);
        assertEquals("Unexpected day of week", Calendar.SUNDAY, c
                .get(Calendar.DAY_OF_WEEK));
        //
        Date adjustedSunday = framer.adjustLeft(newSunday());
        assertEquals(
                "Adjusted sunday is expected to be equal to adjusted monday",
                adjusted, adjustedSunday);
    }

    public void testAdjustRight() {
        WeekFramerImpl framer = new WeekFramerImpl();
        Date adjustedMonday = framer.adjustRight(newMonday());
        Date adjustedSunday = framer.adjustRight(newSunday());
        assertEquals(adjustedMonday, adjustedSunday);
        Calendar c = (Calendar) Calendar.getInstance().clone();
        c.setTime(adjustedMonday);
        assertEquals("Unexpected day of week", Calendar.MONDAY, c
                .get(Calendar.DAY_OF_WEEK));
        c.add(Calendar.MILLISECOND, -1);
        assertEquals("Unexpected day of week", Calendar.SUNDAY, c
                .get(Calendar.DAY_OF_WEEK));
    }

    public void testJumpLeft() {
        WeekFramerImpl framer = new WeekFramerImpl();
        Date adjustedMonday = framer.jumpLeft(newMonday());
        Date adjustedSunday = framer.jumpLeft(newSunday());
        assertNotSame(adjustedMonday, adjustedSunday);
        Calendar c = (Calendar) Calendar.getInstance().clone();
        c.setTime(adjustedMonday);
        assertTrue("Unexpected day of week, date=" + c.getTime(),
                Calendar.MONDAY == c.get(Calendar.DAY_OF_WEEK));
        assertNotSame(adjustedMonday, newMonday());
        c.setTime(adjustedSunday);
        assertEquals("Unexpected day of week, date=" + c.getTime(),
                Calendar.SUNDAY, c.get(Calendar.DAY_OF_WEEK));
        assertNotSame(adjustedMonday, newSunday());
    }

    private Date newMonday() {
        Calendar c = (Calendar) Calendar.getInstance().clone();
        c.clear();
        c.set(Calendar.YEAR, 2004);
        c.set(Calendar.MONTH, Calendar.NOVEMBER);
        c.set(Calendar.DAY_OF_MONTH, 8);
        return c.getTime();
    }

    private Date newSunday() {
        Calendar c = (Calendar) Calendar.getInstance().clone();
        c.clear();
        c.set(Calendar.YEAR, 2004);
        c.set(Calendar.MONTH, Calendar.NOVEMBER);
        c.set(Calendar.DAY_OF_MONTH, 14);
        return c.getTime();

    }
}
TOP

Related Classes of net.sourceforge.ganttproject.test.time.TestWeekFramer

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.