-
Notifications
You must be signed in to change notification settings - Fork 11
/
DateOracleDBTest.java
54 lines (44 loc) · 1.7 KB
/
DateOracleDBTest.java
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
import com.demo.OracleDateHelper;
import org.junit.Assert;
import org.junit.Test;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import static org.junit.Assert.assertEquals;
/**
* Тестирование работы с датами
*/
public class DateOracleDBTest {
@Test
public void baseDate() throws ParseException {
Calendar c = Calendar.getInstance();
c.set(2014, Calendar.APRIL, 18);
Date date = c.getTime();
SimpleDateFormat dateFormat = new SimpleDateFormat("dd.MM.yyyy");
// Печать даты в строку
assertEquals("18.04.2014", dateFormat.format(date));
// Из строки в дату
Date parsedDate = dateFormat.parse("19.05.2013");
Calendar cal = Calendar.getInstance();
cal.setTime(parsedDate);
assertEquals(19, cal.get(Calendar.DAY_OF_MONTH));
assertEquals(Calendar.MAY, cal.get(Calendar.MONTH));
assertEquals(2013, cal.get(Calendar.YEAR));
}
/**
* Перевод даты в формат БД Oracle и обратно
*/
@Test
public void oracleDatabaseDateHelper() throws ParseException {
// Из даты в Oracle
Calendar c = Calendar.getInstance();
c.set(2014, Calendar.MAY, 9, 1, 2, 3);
Date date = c.getTime();
Assert.assertEquals("2014-05-09 01:02:03", OracleDateHelper.toStr(date));
// Из БД в дату
Date d = OracleDateHelper.parse("2014-05-09 01:02:03");
SimpleDateFormat dateFormat = new SimpleDateFormat("dd.MM.yyyy hh:mm:ss");
assertEquals("09.05.2014 01:02:03", dateFormat.format(d));
}
}