blob: d2c2b251c6bdb6a8b2204c110019383b804c07c9 (
plain)
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
|
package org.traccar.calendar;
import net.fortuna.ical4j.data.ParserException;
import org.junit.jupiter.api.Test;
import org.traccar.model.Calendar;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class CalendarTest {
@Test
public void testCalendar() throws IOException, ParserException, ParseException {
String calendarString = "BEGIN:VCALENDAR\n" +
"PRODID:-//Mozilla.org/NONSGML Mozilla Calendar V1.1//EN\n" +
"VERSION:2.0\n" +
"BEGIN:VTIMEZONE\n" +
"TZID:Asia/Yekaterinburg\n" +
"BEGIN:STANDARD\n" +
"TZOFFSETFROM:+0500\n" +
"TZOFFSETTO:+0500\n" +
"TZNAME:YEKT\n" +
"DTSTART:19700101T000000\n" +
"END:STANDARD\n" +
"END:VTIMEZONE\n" +
"BEGIN:VEVENT\n" +
"CREATED:20161213T045151Z\n" +
"LAST-MODIFIED:20161213T045242Z\n" +
"DTSTAMP:20161213T045242Z\n" +
"UID:9d000df0-6354-479d-a407-218dac62c7c9\n" +
"SUMMARY:Every night\n" +
"RRULE:FREQ=DAILY\n" +
"DTSTART;TZID=Asia/Yekaterinburg:20161130T230000\n" +
"DTEND;TZID=Asia/Yekaterinburg:20161201T070000\n" +
"TRANSP:OPAQUE\n" +
"END:VEVENT\n" +
"END:VCALENDAR";
Calendar calendar = new Calendar();
calendar.setData(calendarString.getBytes());
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ssX");
assertFalse(calendar.checkMoment(format.parse("2016-12-13 22:59:59+05")));
assertTrue(calendar.checkMoment(format.parse("2016-12-13 23:00:01+05")));
assertTrue(calendar.checkMoment(format.parse("2016-12-13 06:59:59+05")));
assertFalse(calendar.checkMoment(format.parse("2016-12-13 07:00:01+05")));
var periods = calendar.findPeriods(format.parse("2016-12-13 06:59:59+05"));
assertFalse(periods.isEmpty());
}
@Test
public void testCalendarOverlap() throws IOException, ParserException, ParseException {
String calendarString = "BEGIN:VCALENDAR\n" +
"VERSION:2.0\n" +
"PRODID:-//Traccar//NONSGML Traccar//EN\n" +
"BEGIN:VEVENT\n" +
"UID:00000000-0000-0000-0000-000000000000\n" +
"DTSTART;TZID=America/Los_Angeles:20240420T060000\n" +
"DTEND;TZID=America/Los_Angeles:20240421T060000\n" +
"RRULE:FREQ=DAILY\n" +
"SUMMARY:Event\n" +
"END:VEVENT\n" +
"END:VCALENDAR";
Calendar calendar = new Calendar();
calendar.setData(calendarString.getBytes());
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ssX");
var periods0 = calendar.findPeriods(format.parse("2014-05-13 07:00:00-07"));
var periods1 = calendar.findPeriods(format.parse("2024-05-13 05:00:00-07"));
var periods2 = calendar.findPeriods(format.parse("2024-05-13 07:00:00-07"));
var periods3 = calendar.findPeriods(format.parse("2024-05-13 08:00:00-07"));
assertEquals(periods0.size(), 0);
assertEquals(periods1.size(), 1);
assertEquals(periods2.size(), 1);
assertEquals(periods3.size(), 1);
assertNotEquals(periods0, periods1);
assertNotEquals(periods1, periods2);
assertEquals(periods2, periods3);
}
}
|