Merge "Make neutron a simple osgi app"
[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 static org.junit.Assert.assertThat;
11 import static org.junit.Assert.fail;
12 import static org.hamcrest.CoreMatchers.containsString;
13
14 import org.junit.Test;
15 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
16 import org.w3c.dom.Document;
17
18 public class NetconfUtilTest {
19
20     @Test
21     public void testConflictingVersionDetection() throws Exception {
22         Document document = XmlUtil.readXmlToDocument(getClass().getResourceAsStream("/netconfMessages/conflictingversion/conflictingVersionResponse.xml"));
23         try{
24             NetconfUtil.checkIsMessageOk(document);
25             fail();
26         }catch(IllegalStateException e){
27             assertThat(e.getMessage(), containsString("Optimistic lock failed. Expected parent version 21, was 18"));
28         }
29     }
30 }