4

如何使这个单元测试在所有时区都通过,而不管 DST 是否处于活动状态?

import static org.junit.Assert.*;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.joda.time.DateTime;
import org.junit.Test;

public class TimeZoneTest {

    private final static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat( "yyyy.MM.dd'T'HH:mm.ss:SSSZZ" );

    @Test
    public void testUtilDateMillis() throws Exception {
        assertEquals( "1970.01.01T00:00.00:000+0000", DATE_FORMAT.format( new Date( 0L ) ) );
    }

    @Test
    public void testDateTimeMillis() throws Exception {
        assertEquals( "1970-01-01T00:00:00.000+00:00", new DateTime( 0L ).toString() );
    }
}
4

2 回答 2

7

默认情况下,新的SimpleDateFormat将使用系统默认时区。如果你想要一个特定的时区,你应该调用setTimeZone它:

private final static SimpleDateFormat DATE_FORMAT = createFormat();

private static SimpleDateFormat createFormat() {
    // Make sure there are no locale-specific nasties, either...
    SimpleDateFormat ret = new SimpleDateFormat("yyyy.MM.dd'T'HH:mm.ss:SSSZZ",
                                                Locale.US);
    ret.setTimeZone(TimeZone.getTimeZone("Etc/UTC");
}

对于您的第二个测试,您希望将其更改为:

new DateTime(0L, DateTimeZone.UTC);

请注意,您通常不应该使用静态SimpleDateFormat变量,因为它不是线程安全的。(而Joda Time DateTimeFormatter实现线程安全的。)

于 2012-05-31T12:52:03.727 回答
-3

或者你可以比较日期并把

@Ignore("Timezone issues")
@Test

在您的单元测试中

于 2016-03-24T05:49:33.090 回答