From c67fb0d8e6779191620d5485f21003a2a0d9573d Mon Sep 17 00:00:00 2001 From: Hao Huang Date: Fri, 10 Feb 2017 16:29:28 -0800 Subject: Move time/date related tests out of CoreTest --- src/test/scala/xyz/driver/core/TimeTest.scala | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/test/scala/xyz/driver/core/TimeTest.scala') diff --git a/src/test/scala/xyz/driver/core/TimeTest.scala b/src/test/scala/xyz/driver/core/TimeTest.scala index 76ef42c..b83137c 100644 --- a/src/test/scala/xyz/driver/core/TimeTest.scala +++ b/src/test/scala/xyz/driver/core/TimeTest.scala @@ -84,4 +84,20 @@ class TimeTest extends FlatSpec with Matchers with Checkers { TimeRange(Time(432L), Time(321L)).duration should be((-111).milliseconds) TimeRange(Time(333L), Time(333L)).duration should be(0.milliseconds) } + + "Time" should "use TimeZone correctly when converting to Date" in { + + val EST = java.util.TimeZone.getTimeZone("EST") + val PST = java.util.TimeZone.getTimeZone("PST") + + val timestamp = { + import java.util.Calendar + val cal = Calendar.getInstance(EST) + cal.set(Calendar.HOUR_OF_DAY, 1) + Time(cal.getTime().getTime()) + } + + textualDate(EST)(timestamp) should not be textualDate(PST)(timestamp) + timestamp.toDate(EST) should not be timestamp.toDate(PST) + } } -- cgit v1.2.3