aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper/DateUtilTest.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-01-02 09:24:45 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-01-02 09:24:45 +1300
commit865c6e3fdccc5b59b55501aa58fd921cdb8a1ec1 (patch)
tree6cc58652c2434aa54465ac9ebdb06d3a45dff314 /test/org/traccar/helper/DateUtilTest.java
parentbb61bf04166a539627c8bcaefcf30e241d47a27a (diff)
downloadtrackermap-server-865c6e3fdccc5b59b55501aa58fd921cdb8a1ec1.tar.gz
trackermap-server-865c6e3fdccc5b59b55501aa58fd921cdb8a1ec1.tar.bz2
trackermap-server-865c6e3fdccc5b59b55501aa58fd921cdb8a1ec1.zip
Correct date if device sends not full time
Diffstat (limited to 'test/org/traccar/helper/DateUtilTest.java')
-rw-r--r--test/org/traccar/helper/DateUtilTest.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/org/traccar/helper/DateUtilTest.java b/test/org/traccar/helper/DateUtilTest.java
new file mode 100644
index 000000000..ae5f20696
--- /dev/null
+++ b/test/org/traccar/helper/DateUtilTest.java
@@ -0,0 +1,29 @@
+package org.traccar.helper;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import java.text.DateFormat;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+
+public class DateUtilTest {
+
+ @Test
+ public void testCorrectDate() throws ParseException {
+
+ DateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+
+ Assert.assertEquals(f.parse("2015-12-31 23:59:59"),
+ DateUtil.correctDate(f.parse("2016-01-01 00:00:01"), f.parse("2016-01-01 23:59:59"), Calendar.DAY_OF_MONTH));
+
+ Assert.assertEquals(f.parse("2016-01-01 00:00:02"),
+ DateUtil.correctDate(f.parse("2016-01-01 00:00:01"), f.parse("2016-01-01 00:00:02"), Calendar.DAY_OF_MONTH));
+
+ Assert.assertEquals(f.parse("2016-01-01 00:00:02"),
+ DateUtil.correctDate(f.parse("2016-01-01 00:00:01"), f.parse("2015-12-31 00:00:02"), Calendar.DAY_OF_MONTH));
+
+ }
+
+}