Merge "Bug 6645 - 2 digits milliseconds can not be parsed in notification eventTime"
[netconf.git] / netconf / netconf-notifications-impl / src / test / java / org / opendaylight / netconf / notifications / impl / NetconfNotificationManagerTest.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.notifications.impl;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.fail;
13 import static org.mockito.Matchers.any;
14 import static org.mockito.Mockito.doNothing;
15 import static org.mockito.Mockito.mock;
16 import static org.mockito.Mockito.verify;
17 import static org.mockito.Mockito.verifyNoMoreInteractions;
18
19 import com.google.common.collect.Lists;
20 import java.text.SimpleDateFormat;
21 import java.time.Instant;
22 import java.time.format.DateTimeParseException;
23 import java.util.ArrayList;
24 import java.util.Date;
25 import java.util.Iterator;
26 import org.junit.Assert;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mock;
30 import org.mockito.MockitoAnnotations;
31 import org.opendaylight.netconf.notifications.BaseNotificationPublisherRegistration;
32 import org.opendaylight.netconf.notifications.NetconfNotification;
33 import org.opendaylight.netconf.notifications.NetconfNotificationCollector;
34 import org.opendaylight.netconf.notifications.NetconfNotificationListener;
35 import org.opendaylight.netconf.notifications.NetconfNotificationRegistry;
36 import org.opendaylight.netconf.notifications.NotificationListenerRegistration;
37 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.StreamNameType;
38 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.netconf.streams.Stream;
39 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfCapabilityChange;
40 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfCapabilityChangeBuilder;
41
42 public class NetconfNotificationManagerTest {
43
44     public static final String RFC3339_DATE_FORMAT_WITH_MILLIS_BLUEPRINT = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX";
45     @Mock
46     private NetconfNotificationRegistry notificationRegistry;
47
48     @Before
49     public void setUp() throws Exception {
50         MockitoAnnotations.initMocks(this);
51     }
52
53     @Test
54     public void testEventTime() throws Exception {
55         //Testing values with SimpleDateFormat
56         final ArrayList<String> checkWith = Lists.newArrayList(
57                 "2001-07-04T12:08:56.235-07:00",
58                 "2015-10-23T09:42:27.671+00:00",
59                 "1970-01-01T17:17:22.229+00:00",
60                 "1937-01-01T12:00:27.870+00:20",
61                 "2015-06-30T23:59:59.000+00:00",
62                 "1996-12-19T16:39:57.000-08:00",
63                 "2015-10-23T09:42:27.000+00:00",
64                 "2015-10-23T09:42:27.200+00:00",
65                 "1985-04-12T23:20:50.520+00:00",
66                 // Values with leap second
67                 "2001-07-04T23:59:59.235-07:00",
68                 "1990-12-31T23:59:59.000-08:00",
69                 "2015-10-23T23:59:59.671+00:00",
70                 "1970-01-01T23:59:59.229+00:00",
71                 "1937-01-01T23:59:59.870+00:20",
72                 "1990-12-31T23:59:59.000+00:00",
73                 "2015-10-23T23:59:59.200+00:00",
74                 "1985-04-12T23:59:59.520+00:00");
75         final Iterator<String> iterator = checkWith.iterator();
76
77         // Testing correct values
78         for (final String time : Lists.newArrayList(
79                 "2001-07-04T12:08:56.235-07:00",
80                 "2015-10-23T09:42:27.67175+00:00",
81                 "1970-01-01T17:17:22.229568+00:00",
82                 "1937-01-01T12:00:27.87+00:20",
83                 "2015-06-30T23:59:59Z",
84                 "1996-12-19T16:39:57-08:00",
85                 "2015-10-23T09:42:27Z",
86                 "2015-10-23T09:42:27.200001Z",
87                 "1985-04-12T23:20:50.52Z",
88                 // Values with leap second
89                 "2001-07-04T23:59:60.235-07:00",
90                 "1990-12-31T23:59:60-08:00",
91                 "2015-10-23T23:59:60.67175+00:00",
92                 "1970-01-01T23:59:60.229568+00:00",
93                 "1937-01-01T23:59:60.87+00:20",
94                 "1990-12-31T23:59:60Z",
95                 "2015-10-23T23:59:60.20001Z",
96                 "1985-04-12T23:59:60.52Z"
97         )) {
98             try {
99                 final Date apply = NetconfNotification.RFC3339_DATE_PARSER.apply(time);
100                 final Date parse = new SimpleDateFormat(RFC3339_DATE_FORMAT_WITH_MILLIS_BLUEPRINT).parse(iterator.next());
101                 assertEquals(parse.getTime(), apply.getTime());
102                 // Testing that we're consistent from formatting to parsing.
103                 final String dateString = NetconfNotification.RFC3339_DATE_FORMATTER.apply(apply);
104                 final Date date1 = NetconfNotification.RFC3339_DATE_PARSER.apply(dateString);
105                 final String dateString1 = NetconfNotification.RFC3339_DATE_FORMATTER.apply(date1);
106                 Assert.assertEquals(apply, date1);
107                 Assert.assertEquals(dateString, dateString1);
108             } catch (final DateTimeParseException e) {
109                 fail("Failed to parse time value = " + time + " " + e);
110                 throw e;
111             }
112         }
113
114         // Testing that we're consistent from formatting to parsing.
115         final Date date0 = Date.from(Instant.ofEpochMilli(0));
116         final String dateString0 = NetconfNotification.RFC3339_DATE_FORMATTER.apply(date0);
117         final Date date1 = NetconfNotification.RFC3339_DATE_PARSER.apply(dateString0);
118         final String dateString1 = NetconfNotification.RFC3339_DATE_FORMATTER.apply(date1);
119         Assert.assertEquals(date0, date1);
120         Assert.assertEquals(dateString0, dateString1);
121
122         // Testing wrong values
123         for (final String time : Lists.newArrayList(
124                 "0",
125                 "205-10-23T09:42:27.67175+00:00",
126                 "1970-01-01T17:60:22.229568+00:00",
127                 "1937-01-01T32:00:27.87+00:20",
128                 "2060-13-31T15:59:90-08:00",
129                 "1990-12-31T23:58:60Z"
130         )) {
131             try {
132                 NetconfNotification.RFC3339_DATE_PARSER.apply(time);
133             } catch (final DateTimeParseException e) {
134                 continue;
135             }
136             fail("Should have thrown an exception; value= " + time);
137         }
138     }
139
140     @Test
141     public void testNotificationListeners() throws Exception {
142         final NetconfNotificationManager netconfNotificationManager = new NetconfNotificationManager();
143         final BaseNotificationPublisherRegistration baseNotificationPublisherRegistration =
144                 netconfNotificationManager.registerBaseNotificationPublisher();
145
146         final NetconfCapabilityChangeBuilder capabilityChangedBuilder = new NetconfCapabilityChangeBuilder();
147
148         final NetconfNotificationListener listener = mock(NetconfNotificationListener.class);
149         doNothing().when(listener).onNotification(any(StreamNameType.class), any(NetconfNotification.class));
150         final NotificationListenerRegistration notificationListenerRegistration = netconfNotificationManager.registerNotificationListener(NetconfNotificationManager.BASE_NETCONF_STREAM.getName(), listener);
151         final NetconfCapabilityChange notification = capabilityChangedBuilder.build();
152         baseNotificationPublisherRegistration.onCapabilityChanged(notification);
153
154         verify(listener).onNotification(any(StreamNameType.class), any(NetconfNotification.class));
155
156         notificationListenerRegistration.close();
157
158         baseNotificationPublisherRegistration.onCapabilityChanged(notification);
159         verifyNoMoreInteractions(listener);
160     }
161
162     @Test
163     public void testClose() throws Exception {
164         final NetconfNotificationManager netconfNotificationManager = new NetconfNotificationManager();
165
166         final BaseNotificationPublisherRegistration baseNotificationPublisherRegistration = netconfNotificationManager.registerBaseNotificationPublisher();
167
168         final NetconfNotificationListener listener = mock(NetconfNotificationListener.class);
169         doNothing().when(listener).onNotification(any(StreamNameType.class), any(NetconfNotification.class));
170
171         netconfNotificationManager.registerNotificationListener(NetconfNotificationManager.BASE_NETCONF_STREAM.getName(), listener);
172
173         final NetconfNotificationCollector.NetconfNotificationStreamListener streamListener =
174                 mock(NetconfNotificationCollector.NetconfNotificationStreamListener.class);
175         doNothing().when(streamListener).onStreamUnregistered(any(StreamNameType.class));
176         doNothing().when(streamListener).onStreamRegistered(any(Stream.class));
177         netconfNotificationManager.registerStreamListener(streamListener);
178
179         verify(streamListener).onStreamRegistered(NetconfNotificationManager.BASE_NETCONF_STREAM);
180
181         netconfNotificationManager.close();
182
183         verify(streamListener).onStreamUnregistered(NetconfNotificationManager.BASE_NETCONF_STREAM.getName());
184
185         try {
186             baseNotificationPublisherRegistration.onCapabilityChanged(new NetconfCapabilityChangeBuilder().build());
187         } catch (final IllegalStateException e) {
188             // Exception should be thrown after manager is closed
189             return;
190         }
191
192         fail("Publishing into a closed manager should fail");
193     }
194
195     @Test
196     public void testStreamListeners() throws Exception {
197         final NetconfNotificationManager netconfNotificationManager = new NetconfNotificationManager();
198
199         final NetconfNotificationCollector.NetconfNotificationStreamListener streamListener = mock(NetconfNotificationCollector.NetconfNotificationStreamListener.class);
200         doNothing().when(streamListener).onStreamRegistered(any(Stream.class));
201         doNothing().when(streamListener).onStreamUnregistered(any(StreamNameType.class));
202
203         netconfNotificationManager.registerStreamListener(streamListener);
204
205         final BaseNotificationPublisherRegistration baseNotificationPublisherRegistration =
206                 netconfNotificationManager.registerBaseNotificationPublisher();
207
208         verify(streamListener).onStreamRegistered(NetconfNotificationManager.BASE_NETCONF_STREAM);
209
210
211         baseNotificationPublisherRegistration.close();
212
213         verify(streamListener).onStreamUnregistered(NetconfNotificationManager.BASE_STREAM_NAME);
214     }
215 }