aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2021-06-10 00:49:05 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2021-06-10 00:49:05 +0000
commit331e72a262cd2ed4defb889ff3eeefc80452f79f (patch)
tree48db75cbadf57bc185e5881ba27be006eb090610
parent9706c1f1e579844f89bc39d979851ee0065096b0 (diff)
downloadjackcess-331e72a262cd2ed4defb889ff3eeefc80452f79f.tar.gz
jackcess-331e72a262cd2ed4defb889ff3eeefc80452f79f.zip
add unit tests for extended date/time type
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1366 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/Row.java6
-rwxr-xr-xsrc/test/data/V2019/extDateTestV2019.accdbbin0 -> 557056 bytes
-rw-r--r--src/test/java/com/healthmarketscience/jackcess/impl/BigIntTest.java12
-rw-r--r--src/test/java/com/healthmarketscience/jackcess/impl/ExtendedDateTest.java154
-rw-r--r--src/test/java/com/healthmarketscience/jackcess/impl/JetFormatTest.java3
5 files changed, 163 insertions, 12 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/Row.java b/src/main/java/com/healthmarketscience/jackcess/Row.java
index 430dfd1..ad60301 100644
--- a/src/main/java/com/healthmarketscience/jackcess/Row.java
+++ b/src/main/java/com/healthmarketscience/jackcess/Row.java
@@ -102,9 +102,9 @@ public interface Row extends Map<String,Object>
/**
* Convenience method which gets the value for the row with the given name,
- * casting it to a LocalDateTime (DataType SHORT_DATE_TIME). This method
- * will only work for Database instances configured for
- * {@link DateTimeType#LOCAL_DATE_TIME}.
+ * casting it to a LocalDateTime (DataType SHORT_DATE_TIME or
+ * EXT_DATE_TIME). This method will only work for Database instances
+ * configured for {@link DateTimeType#LOCAL_DATE_TIME}.
*/
public LocalDateTime getLocalDateTime(String name);
diff --git a/src/test/data/V2019/extDateTestV2019.accdb b/src/test/data/V2019/extDateTestV2019.accdb
new file mode 100755
index 0000000..5a7d1eb
--- /dev/null
+++ b/src/test/data/V2019/extDateTestV2019.accdb
Binary files differ
diff --git a/src/test/java/com/healthmarketscience/jackcess/impl/BigIntTest.java b/src/test/java/com/healthmarketscience/jackcess/impl/BigIntTest.java
index e3ab82d..98689d6 100644
--- a/src/test/java/com/healthmarketscience/jackcess/impl/BigIntTest.java
+++ b/src/test/java/com/healthmarketscience/jackcess/impl/BigIntTest.java
@@ -79,14 +79,10 @@ public class BigIntTest extends TestCase
"num1", lng));
}
- Collections.sort(expectedTable, new Comparator<Map<String, Object>>() {
- @Override public int compare(
- Map<String, Object> r1,
- Map<String, Object> r2) {
- Long l1 = (Long)r1.get("num1");
- Long l2 = (Long)r2.get("num1");
- return l1.compareTo(l2);
- }
+ Collections.sort(expectedTable, (r1, r2) -> {
+ Long l1 = (Long)r1.get("num1");
+ Long l2 = (Long)r2.get("num1");
+ return l1.compareTo(l2);
});
Cursor c = t.newCursor().setIndexByName("idx").toIndexCursor();
diff --git a/src/test/java/com/healthmarketscience/jackcess/impl/ExtendedDateTest.java b/src/test/java/com/healthmarketscience/jackcess/impl/ExtendedDateTest.java
new file mode 100644
index 0000000..e4de3f0
--- /dev/null
+++ b/src/test/java/com/healthmarketscience/jackcess/impl/ExtendedDateTest.java
@@ -0,0 +1,154 @@
+/*
+Copyright (c) 2021 James Ahlborn
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package com.healthmarketscience.jackcess.impl;
+
+import java.time.LocalDate;
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.List;
+import java.util.Map;
+
+import com.healthmarketscience.jackcess.Column;
+import com.healthmarketscience.jackcess.Cursor;
+import com.healthmarketscience.jackcess.DataType;
+import com.healthmarketscience.jackcess.Database;
+import static com.healthmarketscience.jackcess.DatabaseBuilder.*;
+import com.healthmarketscience.jackcess.Index;
+import com.healthmarketscience.jackcess.Row;
+import com.healthmarketscience.jackcess.Table;
+import static com.healthmarketscience.jackcess.TestUtil.*;
+import static com.healthmarketscience.jackcess.impl.JetFormatTest.*;
+import junit.framework.TestCase;
+import org.junit.Assert;
+
+/**
+ *
+ * @author James Ahlborn
+ */
+public class ExtendedDateTest extends TestCase
+{
+
+ public ExtendedDateTest(String name) throws Exception {
+ super(name);
+ }
+
+ public void testReadExtendedDate() throws Exception {
+
+ DateTimeFormatter dtfNoTime = DateTimeFormatter.ofPattern("M/d/yyy");
+ DateTimeFormatter dtfFull = DateTimeFormatter.ofPattern("M/d/yyy h:mm:ss.SSSSSSS a");
+
+ for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.EXT_DATE)) {
+
+ Database db = openMem(testDB);
+
+ Table t = db.getTable("Table1");
+ for(Row r : t) {
+ LocalDateTime ldt = r.getLocalDateTime("DateExt");
+ String str = r.getString("DateExtStr");
+
+ if(ldt != null) {
+ String str1 = dtfNoTime.format(ldt);
+ String str2 = dtfFull.format(ldt);
+
+ Assert.assertTrue(str1.equals(str) || str2.equals(str));
+ } else {
+ Assert.assertNull(str);
+ }
+
+ }
+
+ Index idx = t.getIndex("DateExtAsc");
+ IndexCodesTest.checkIndexEntries(testDB, t, idx);
+ idx = t.getIndex("DateExtDesc");
+ IndexCodesTest.checkIndexEntries(testDB, t, idx);
+
+ db.close();
+ }
+ }
+
+ public void testWriteExtendedDate() throws Exception {
+
+ for (final Database.FileFormat fileFormat : SUPPORTED_FILEFORMATS) {
+ JetFormat format = DatabaseImpl.getFileFormatDetails(fileFormat)
+ .getFormat();
+
+ if(!format.isSupportedDataType(DataType.EXT_DATE_TIME)) {
+ continue;
+ }
+
+ Database db = create(fileFormat);
+
+ Table t = newTable("Test")
+ .addColumn(newColumn("id", DataType.LONG)
+ .setAutoNumber(true))
+ .addColumn(newColumn("data1", DataType.TEXT))
+ .addColumn(newColumn("extDate", DataType.EXT_DATE_TIME))
+ .addIndex(newIndex("idxAsc").addColumns("extDate"))
+ .addIndex(newIndex("idxDesc").addColumns(false, "extDate"))
+ .toTable(db);
+
+ Object[] ldts = {
+ LocalDate.of(2020,6,17),
+ LocalDate.of(2021,6,14),
+ LocalDateTime.of(2021,6,14,12,45),
+ LocalDateTime.of(2021,6,14,1,45),
+ LocalDateTime.of(2021,6,14,22,45,12,345678900),
+ LocalDateTime.of(1765,6,14,12,45),
+ LocalDateTime.of(100,6,14,12,45,00,123456700),
+ LocalDateTime.of(1265,6,14,12,45)
+ };
+
+ List<Map<String, Object>> expectedTable =
+ new ArrayList<Map<String, Object>>();
+
+ int idx = 1;
+ for(Object ldt : ldts) {
+ t.addRow(Column.AUTO_NUMBER, "" + ldt, ldt);
+
+ LocalDateTime realLdt = (LocalDateTime)ColumnImpl.toInternalValue(
+ DataType.EXT_DATE_TIME, ldt, (DatabaseImpl)db);
+
+ expectedTable.add(createExpectedRow(
+ "id", idx++,
+ "data1", "" + ldt,
+ "extDate", realLdt));
+ }
+
+ Comparator<Map<String, Object>> comp = (r1, r2) -> {
+ LocalDateTime l1 = (LocalDateTime)r1.get("extDate");
+ LocalDateTime l2 = (LocalDateTime)r2.get("extDate");
+ return l1.compareTo(l2);
+ };
+ Collections.sort(expectedTable, comp);
+
+ Cursor c = t.newCursor().setIndexByName("idxAsc").toIndexCursor();
+
+ assertCursor(expectedTable, c);
+
+ Collections.sort(expectedTable, comp.reversed());
+
+ c = t.newCursor().setIndexByName("idxDesc").toIndexCursor();
+
+ assertCursor(expectedTable, c);
+
+ db.close();
+ }
+ }
+}
diff --git a/src/test/java/com/healthmarketscience/jackcess/impl/JetFormatTest.java b/src/test/java/com/healthmarketscience/jackcess/impl/JetFormatTest.java
index 19d95f0..6f01bca 100644
--- a/src/test/java/com/healthmarketscience/jackcess/impl/JetFormatTest.java
+++ b/src/test/java/com/healthmarketscience/jackcess/impl/JetFormatTest.java
@@ -56,7 +56,8 @@ public class JetFormatTest extends TestCase {
BLOB("testOle"),
CALC_FIELD("calcFieldTest"),
BINARY_INDEX("binIdxTest"),
- OLD_DATES("oldDates");
+ OLD_DATES("oldDates"),
+ EXT_DATE("extDateTest");
private final String _basename;