Merge "Bug 2267: Reuse leaf and leaf set entry builders in NormalizedNodeInputStreamR...
[controller.git] / opendaylight / netconf / netconf-impl / src / test / java / org / opendaylight / controller / netconf / impl / mapping / operations / DefaultStopExiTest.java
1 /*
2  * Copyright (c) 2014 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.controller.netconf.impl.mapping.operations;
10
11 import static org.junit.Assert.assertNotNull;
12 import static org.mockito.Mockito.any;
13 import static org.mockito.Mockito.anyString;
14 import static org.mockito.Mockito.doReturn;
15 import static org.mockito.Mockito.mock;
16 import static org.mockito.Mockito.times;
17 import static org.mockito.Mockito.verify;
18
19 import io.netty.channel.Channel;
20 import io.netty.channel.ChannelHandler;
21 import io.netty.channel.ChannelPipeline;
22 import org.junit.Test;
23 import org.opendaylight.controller.netconf.impl.NetconfServerSession;
24 import org.opendaylight.controller.netconf.util.xml.XmlElement;
25 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
26 import org.w3c.dom.Document;
27
28 public class DefaultStopExiTest {
29     @Test
30     public void testHandleWithNoSubsequentOperations() throws Exception {
31         DefaultStopExi exi = new DefaultStopExi("");
32         Document doc = XmlUtil.newDocument();
33         Channel channel = mock(Channel.class);
34         ChannelPipeline pipeline = mock(ChannelPipeline.class);
35         doReturn(pipeline).when(channel).pipeline();
36         ChannelHandler channelHandler = mock(ChannelHandler.class);
37         doReturn(channelHandler).when(pipeline).replace(anyString(), anyString(), any(ChannelHandler.class));
38
39         NetconfServerSession serverSession = new NetconfServerSession(null, channel, 2L, null);
40         exi.setNetconfSession(serverSession);
41
42         assertNotNull(exi.handleWithNoSubsequentOperations(doc, XmlElement.fromDomElement(XmlUtil.readXmlToElement("<elem/>"))));
43         verify(pipeline, times(1)).replace(anyString(), anyString(), any(ChannelHandler.class));
44     }
45 }