1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
/*
Copyright (c) 2018 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;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.math.BigDecimal;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.temporal.TemporalAccessor;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TimeZone;
import java.util.TreeSet;
import java.util.UUID;
import com.healthmarketscience.jackcess.impl.ColumnImpl;
import com.healthmarketscience.jackcess.impl.DatabaseImpl;
import com.healthmarketscience.jackcess.impl.RowIdImpl;
import com.healthmarketscience.jackcess.impl.RowImpl;
import com.healthmarketscience.jackcess.impl.TableImpl;
import com.healthmarketscience.jackcess.util.LinkResolver;
import junit.framework.TestCase;
import static com.healthmarketscience.jackcess.TestUtil.*;
import static com.healthmarketscience.jackcess.impl.JetFormatTest.*;
import static com.healthmarketscience.jackcess.Database.*;
/**
*
* @author James Ahlborn
*/
public class LocalDateTimeTest extends TestCase
{
public LocalDateTimeTest(String name) throws Exception {
super(name);
}
public void testWriteAndReadLocalDate() throws Exception {
for (final FileFormat fileFormat : SUPPORTED_FILEFORMATS) {
Database db = createMem(fileFormat);
db.setDateTimeType(DateTimeType.LOCAL_DATE_TIME);
Table table = new TableBuilder("test")
.addColumn(new ColumnBuilder("name", DataType.TEXT))
.addColumn(new ColumnBuilder("date", DataType.SHORT_DATE_TIME))
.toTable(db);
// since jackcess does not really store millis, shave them off before
// storing the current date/time
long curTimeNoMillis = (System.currentTimeMillis() / 1000L);
curTimeNoMillis *= 1000L;
DateFormat df = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
List<Date> dates =
new ArrayList<Date>(
Arrays.asList(
df.parse("19801231 00:00:00"),
df.parse("19930513 14:43:27"),
null,
df.parse("20210102 02:37:00"),
new Date(curTimeNoMillis)));
Calendar c = Calendar.getInstance();
for(int year = 1801; year < 2050; year +=3) {
for(int month = 0; month <= 12; ++month) {
for(int day = 1; day < 29; day += 3) {
c.clear();
c.set(Calendar.YEAR, year);
c.set(Calendar.MONTH, month);
c.set(Calendar.DAY_OF_MONTH, day);
dates.add(c.getTime());
}
}
}
((DatabaseImpl)db).getPageChannel().startWrite();
try {
for(Date d : dates) {
table.addRow("row " + d, d);
}
} finally {
((DatabaseImpl)db).getPageChannel().finishWrite();
}
List<LocalDateTime> foundDates = new ArrayList<LocalDateTime>();
for(Row row : table) {
foundDates.add(row.getLocalDateTime("date"));
}
assertEquals(dates.size(), foundDates.size());
for(int i = 0; i < dates.size(); ++i) {
Date expected = dates.get(i);
LocalDateTime found = foundDates.get(i);
assertSameDate(expected, found);
}
db.close();
}
}
public void testAncientLocalDates() throws Exception
{
ZoneId zoneId = ZoneId.of("America/New_York");
DateTimeFormatter sdf = DateTimeFormatter.ofPattern("uuuu-MM-dd");
List<String> dates = Arrays.asList("1582-10-15", "1582-10-14",
"1492-01-10", "1392-01-10");
for (final FileFormat fileFormat : SUPPORTED_FILEFORMATS) {
Database db = createMem(fileFormat);
db.setZoneId(zoneId);
db.setDateTimeType(DateTimeType.LOCAL_DATE_TIME);
Table table = new TableBuilder("test")
.addColumn(new ColumnBuilder("name", DataType.TEXT))
.addColumn(new ColumnBuilder("date", DataType.SHORT_DATE_TIME))
.toTable(db);
for(String dateStr : dates) {
LocalDate ld = LocalDate.parse(dateStr, sdf);
table.addRow("row " + dateStr, ld);
}
List<String> foundDates = new ArrayList<String>();
for(Row row : table) {
foundDates.add(sdf.format(row.getLocalDateTime("date")));
}
assertEquals(dates, foundDates);
db.close();
}
for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.OLD_DATES)) {
Database db = openCopy(testDB);
db.setDateTimeType(DateTimeType.LOCAL_DATE_TIME);
Table t = db.getTable("Table1");
List<String> foundDates = new ArrayList<String>();
for(Row row : t) {
foundDates.add(sdf.format(row.getLocalDateTime("DateField")));
}
assertEquals(dates, foundDates);
db.close();
}
}
public void testZoneId() throws Exception
{
ZoneId zoneId = ZoneId.of("America/New_York");
doTestZoneId(zoneId);
zoneId = ZoneId.of("Australia/Sydney");
doTestZoneId(zoneId);
}
private static void doTestZoneId(final ZoneId zoneId) throws Exception
{
final TimeZone tz = TimeZone.getTimeZone(zoneId);
ColumnImpl col = new ColumnImpl(null, null, DataType.SHORT_DATE_TIME, 0, 0, 0) {
@Override
public TimeZone getTimeZone() { return tz; }
@Override
public ZoneId getZoneId() { return zoneId; }
@Override
public ColumnImpl.DateTimeFactory getDateTimeFactory() {
return getDateTimeFactory(DateTimeType.LOCAL_DATE_TIME);
}
};
SimpleDateFormat df = new SimpleDateFormat("yyyy.MM.dd");
df.setTimeZone(tz);
long startDate = df.parse("2012.01.01").getTime();
long endDate = df.parse("2013.01.01").getTime();
Calendar curCal = Calendar.getInstance(tz);
curCal.setTimeInMillis(startDate);
DateTimeFormatter sdf = DateTimeFormatter.ofPattern("uuuu.MM.dd HH:mm:ss");
while(curCal.getTimeInMillis() < endDate) {
Date curDate = curCal.getTime();
LocalDateTime curLdt = LocalDateTime.ofInstant(
Instant.ofEpochMilli(curDate.getTime()), zoneId);
LocalDateTime newLdt = ColumnImpl.ldtFromLocalDateDouble(
col.toDateDouble(curDate));
if(!curLdt.equals(newLdt)) {
System.out.println("FOO " + curLdt + " " + newLdt);
assertEquals(sdf.format(curLdt), sdf.format(newLdt));
}
curCal.add(Calendar.MINUTE, 30);
}
}
}
|