Changed port number for test server in ClientRequestHandlerTest
[controller.git] / opendaylight / netconf / netconf-util / src / test / java / org / opendaylight / controller / netconf / util / NetconfUtilTest.java
1 /*
2  * Copyright (c) 2013 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 package org.opendaylight.controller.netconf.util;
9
10 import org.junit.Test;
11 import org.opendaylight.controller.config.api.ConflictingVersionException;
12 import org.opendaylight.controller.netconf.api.NetconfMessage;
13 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
14 import org.w3c.dom.Document;
15
16 import static org.junit.Assert.assertThat;
17 import static org.junit.Assert.fail;
18 import static org.junit.matchers.JUnitMatchers.containsString;
19
20 public class NetconfUtilTest {
21
22     @Test
23     public void testConflictingVersionDetection() throws Exception {
24         Document document = XmlUtil.readXmlToDocument(getClass().getResourceAsStream("/netconfMessages/conflictingversion/conflictingVersionResponse.xml"));
25         try{
26             NetconfUtil.checkIsMessageOk(new NetconfMessage(document));
27             fail();
28         }catch(ConflictingVersionException e){
29             assertThat(e.getMessage(), containsString("Optimistic lock failed. Expected parent version 21, was 18"));
30         }
31     }
32 }