📄 segmentedtimelinetests2.java
字号:
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (C) Copyright 2000-2004, by Object Refinery Limited and Contributors.
*
* Project Info: http://www.jfree.org/jfreechart/index.html
*
* 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.
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ----------------------------
* SegmentedTimelineTests2.java
* ----------------------------
* (C) Copyright 2004, by Object Refinery Limited and Contributors.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): -;
*
* $Id: SegmentedTimelineTests2.java,v 1.1 2004/08/31 14:31:24 mungady Exp $
*
* Changes
* -------
* 02-Aug-2004 : Added standard header (DG);
*
*/
package org.jfree.chart.axis.junit;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import junit.framework.TestCase;
import org.jfree.chart.axis.SegmentedTimeline;
import org.jfree.util.Log;
import org.jfree.util.PrintStreamLogTarget;
/**
* @author fredatwork
*/
public class SegmentedTimelineTests2 extends TestCase {
/**
* Constructor
*/
public SegmentedTimelineTests2() {
super();
Log.getInstance().replaceTargets(new PrintStreamLogTarget());
}
/**
* Test 1 checks 9am Friday 26 March 2004 converts to a timeline value and back again
* correctly. This is prior to Daylight Saving.
*/
public void test1() {
Log.info("Entering SegmentedTimelineTests2.test1()...");
Calendar cal = Calendar.getInstance(Locale.UK);
cal.set(Calendar.YEAR, 2004);
cal.set(Calendar.MONTH, Calendar.MARCH);
cal.set(Calendar.DAY_OF_MONTH, 26);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
Date date = cal.getTime();
Log.info("date = " + date + "[" + date.getTime() + "]");
SegmentedTimeline timeline = getTimeline();
long value = timeline.toTimelineValue(date);
Log.info("value = " + value);
long ms = timeline.toMillisecond(value);
Log.info("ms = " + ms);
Calendar cal2 = Calendar.getInstance(Locale.UK);
cal2.setTime(new Date(ms));
Date reverted = cal2.getTime();
Log.info("reverted = " + reverted + '[' + reverted.getTime() + "]");
Log.info("");
assertTrue("test1", value == (900000 * 34) && date.getTime() == reverted.getTime());
}
/**
* Test 2 checks 9.15am Friday 26 March 2004 converts to a timeline value and back again
* correctly. This is prior to Daylight Saving.
*/
public void test2() {
Log.info("Entering SegmentedTimelineTests2.test2()...");
Calendar cal = Calendar.getInstance(Locale.UK);
cal.set(Calendar.YEAR, 2004);
cal.set(Calendar.MONTH, Calendar.MARCH);
cal.set(Calendar.DAY_OF_MONTH, 26);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 15);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
Date date = cal.getTime();
Log.info("date = " + date + "[" + date.getTime() + "]");
SegmentedTimeline timeline = getTimeline();
long value = timeline.toTimelineValue(date);
Log.info("value = " + value);
long ms = timeline.toMillisecond(value);
Log.info("ms = " + ms);
Calendar cal2 = Calendar.getInstance(Locale.UK);
cal2.setTime(new Date(ms));
Date reverted = cal2.getTime();
Log.info("reverted = " + reverted + '[' + reverted.getTime() + "]");
Log.info("");
assertTrue(
"test2", value == (900000 * 34 + 900000) && date.getTime() == reverted.getTime()
);
}
/**
* Test 3 checks 9.30am Friday 26 March 2004 converts to a timeline value and back again
* correctly. This is prior to Daylight Saving.
*/
public void test3() {
Log.info("Entering SegmentedTimelineTests2.test3()...");
Calendar cal = Calendar.getInstance(Locale.UK);
cal.set(Calendar.YEAR, 2004);
cal.set(Calendar.MONTH, Calendar.MARCH);
cal.set(Calendar.DAY_OF_MONTH, 26);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 30);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
Date date = cal.getTime();
Log.info("date = " + date + "[" + date.getTime() + "]");
SegmentedTimeline timeline = getTimeline();
long value = timeline.toTimelineValue(date);
Log.info("value = " + value);
long ms = timeline.toMillisecond(value);
Log.info("ms = " + ms);
Calendar cal2 = Calendar.getInstance(Locale.UK);
cal2.setTime(new Date(ms));
Date reverted = cal2.getTime();
Log.info("reverted = " + reverted + '[' + reverted.getTime() + "]");
Log.info("");
assertTrue(
"test2", value == (900000 * 34 + 900000 * 2) && date.getTime() == reverted.getTime()
);
}
/**
* Test 4 checks 9.30am Friday 26 March 2004 (+ 1 millisecond) converts to a timeline
* value and back again correctly. This is prior to Daylight Saving.
*/
public void test4() {
Log.info("Entering SegmentedTimelineTests2.test4()...");
Calendar cal = Calendar.getInstance(Locale.UK);
cal.set(Calendar.YEAR, 2004);
cal.set(Calendar.MONTH, Calendar.MARCH);
cal.set(Calendar.DAY_OF_MONTH, 26);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 30);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 1);
Date date = cal.getTime();
Log.info("date = " + date + "[" + date.getTime() + "]");
SegmentedTimeline timeline = this.getTimeline();
long value = timeline.toTimelineValue(date);
Log.info("value = " + value);
long ms = timeline.toMillisecond(value);
Log.info("ms = " + ms);
Calendar cal2 = Calendar.getInstance(Locale.UK);
cal2.setTime(new Date(ms));
Date reverted = cal2.getTime();
Log.info("reverted = " + reverted + '[' + reverted.getTime() + "]");
Log.info("");
assertTrue(
"test4", value == (900000 * 34 + 900000 * 2 + 1)
&& date.getTime() == reverted.getTime()
);
}
/**
* Test 5 checks 5.30pm Thursday 25 March 2004 converts to a timeline
* value and back again correctly. As it is in the excluded segment, we expect
* it to map to 9am, Friday 26 March 2004. This is prior to Daylight Saving.
*/
public void test5() {
Log.info("Entering SegmentedTimelineTests2.test5()...");
Calendar cal = Calendar.getInstance(Locale.UK);
cal.set(Calendar.YEAR, 2004);
cal.set(Calendar.MONTH, Calendar.MARCH);
cal.set(Calendar.DAY_OF_MONTH, 25);
cal.set(Calendar.HOUR_OF_DAY, 17);
cal.set(Calendar.MINUTE, 30);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
Date date = cal.getTime();
Log.info("date = " + date + "[" + date.getTime() + "]");
SegmentedTimeline timeline = this.getTimeline();
long value = timeline.toTimelineValue(date);
Log.info("value = " + value);
long ms = timeline.toMillisecond(value);
Log.info("ms = " + ms);
Calendar cal2 = Calendar.getInstance(Locale.UK);
cal2.setTime(new Date(ms));
Date reverted = cal2.getTime();
Log.info("reverted = " + reverted + '[' + reverted.getTime() + "]");
Log.info("");
Calendar expectedReverted = Calendar.getInstance(Locale.UK);
expectedReverted.set(Calendar.YEAR, 2004);
expectedReverted.set(Calendar.MONTH, Calendar.MARCH);
expectedReverted.set(Calendar.DAY_OF_MONTH, 26);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -