-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyCalendarTest.java
198 lines (181 loc) · 6.54 KB
/
MyCalendarTest.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
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
/*
* Copyright 2022 The Bank of New York Mellon.
*
* 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 bnymellon.codekatas.calendarkata;
import java.time.Duration;
import java.time.LocalDate;
import java.time.LocalTime;
import java.time.Month;
import java.util.TimeZone;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.set.sorted.SortedSetIterable;
import org.eclipse.collections.impl.test.Verify;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.threeten.extra.Interval;
public class MyCalendarTest
{
private MyCalendar calendar;
/**
* Do not change this method! The tests will fail due to overlapping meetings. Implement the logic in
* MyCalendar to check for overlapping meetings.
*
* @see MyCalendar#hasOverlappingMeeting(LocalDate, LocalTime, Duration) )
*/
@BeforeEach
public void setUp() throws Exception
{
this.calendar = new MyCalendar(TimeZone.getTimeZone("UTC"));
this.setupWeekendMeetings();
this.setupOverlappingWeekendMeetings();
this.setupWeekdayMeetings();
this.setupOverlappingWeekdayMeetings();
}
/**
* Do not change this method!
*/
private void setupWeekendMeetings()
{
this.calendar.addMeeting("Soccer Match",
LocalDate.of(2017, 7, 2),
LocalTime.of(13, 0),
Duration.ofHours(2));
this.calendar.addMeeting("Swimming Championship",
LocalDate.of(2017, 7, 8),
LocalTime.of(13, 0),
Duration.ofHours(2));
}
/**
* Do not change this method!
*/
private void setupOverlappingWeekendMeetings()
{
this.calendar.addMeeting("Soccer Match",
LocalDate.of(2017, 7, 2),
LocalTime.of(12, 30),
Duration.ofHours(1));
this.calendar.addMeeting("Swimming Championship",
LocalDate.of(2017, 7, 8),
LocalTime.of(12, 30),
Duration.ofHours(1));
}
/**
* Do not change this method!
*/
private void setupWeekdayMeetings()
{
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 3),
LocalTime.NOON,
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 5),
LocalTime.NOON,
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 6),
LocalTime.NOON,
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 7),
LocalTime.NOON,
Duration.ofHours(1));
}
/**
* Do not change this method!
*/
private void setupOverlappingWeekdayMeetings()
{
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 3),
LocalTime.NOON.plusMinutes(30),
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 5),
LocalTime.NOON.plusMinutes(30),
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 6),
LocalTime.NOON.plusMinutes(30),
Duration.ofHours(1));
this.calendar.addMeeting("Lunch",
LocalDate.of(2017, 7, 7),
LocalTime.NOON.plusMinutes(30),
Duration.ofHours(1));
}
@Test
public void printCalendar()
{
System.out.println(this.calendar);
}
/**
* Implement the {@link MyCalendar#hasOverlappingMeeting(LocalDate, LocalTime, Duration)} method.
*/
@Test
public void hasOverlappingMeeting()
{
Assertions.assertTrue(this.calendar.hasOverlappingMeeting(
LocalDate.of(2017, 7, 7),
LocalTime.NOON,
Duration.ofHours(1)));
}
@Test
public void getMeetingsForDate()
{
SortedSetIterable<Meeting> meetingsForJuly6 = this.calendar.getMeetingsForDate(LocalDate.of(2017, 7, 6));
Verify.assertSize(1, meetingsForJuly6);
System.out.println(meetingsForJuly6);
}
@Test
public void getMeetingsForWorkWeekOf()
{
final WorkWeek week = this.calendar.getMeetingsForWorkWeekOf(LocalDate.of(2017, 7, 6));
Assertions.assertEquals(4, week.getNumberOfMeetings());
System.out.println(week);
}
@Test
public void getMeetingsForFullWeekOf()
{
final FullWeek week = this.calendar.getMeetingsForFullWeekOf(LocalDate.of(2017, 7, 6));
Assertions.assertEquals(6, week.getNumberOfMeetings());
System.out.println(week);
}
@Test
public void getMeetingsForMonthOf()
{
FullMonth month = this.calendar.getMeetingsForYearMonth(2017, Month.JULY);
Assertions.assertEquals(6, month.getNumberOfMeetings());
System.out.println(month);
}
@Test
public void getAvailableTimeslots()
{
MutableList<Interval> availableTimeslots1 = this.calendar.getAvailableTimeslots(LocalDate.of(2017, 7, 6));
Assertions.assertEquals(2, availableTimeslots1.size());
Assertions.assertTrue(availableTimeslots1.noneSatisfy(this::overlapsMeeting));
System.out.println(availableTimeslots1);
MutableList<Interval> availableTimeslots2 = this.calendar.getAvailableTimeslots(LocalDate.of(2017, 7, 1));
Assertions.assertEquals(1, availableTimeslots2.size());
Assertions.assertTrue(availableTimeslots1.noneSatisfy(this::overlapsMeeting));
System.out.println(availableTimeslots2);
}
private boolean overlapsMeeting(Interval interval)
{
LocalDate date = LocalDate.ofInstant(interval.getStart(), this.calendar.getZoneId());
LocalTime startTime = LocalTime.ofInstant(interval.getStart(), this.calendar.getZoneId());
return this.calendar.hasOverlappingMeeting(date, startTime, interval.toDuration());
}
}