BUG-1135 Improve error reporting in config pusher
[controller.git] / opendaylight / netconf / config-persister-impl / src / test / java / org / opendaylight / controller / netconf / persist / impl / osgi / ConfigPersisterTest.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.persist.impl.osgi;
9
10 import static org.mockito.Matchers.any;
11 import static org.mockito.Matchers.anyString;
12 import static org.mockito.Mockito.doNothing;
13 import static org.mockito.Mockito.doReturn;
14 import static org.mockito.Mockito.doThrow;
15 import static org.mockito.Mockito.mock;
16 import com.google.common.collect.Sets;
17 import java.io.IOException;
18 import org.junit.After;
19 import org.junit.Before;
20 import org.junit.Test;
21 import org.opendaylight.controller.config.api.ConflictingVersionException;
22 import org.opendaylight.controller.netconf.api.Capability;
23 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
24 import org.opendaylight.controller.netconf.mapping.api.HandlingPriority;
25 import org.opendaylight.controller.netconf.mapping.api.NetconfOperation;
26 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationChainedExecution;
27 import org.opendaylight.controller.netconf.mapping.api.NetconfOperationService;
28 import org.opendaylight.controller.netconf.persist.impl.osgi.MockedBundleContext.DummyAdapterWithInitialSnapshot;
29 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.w3c.dom.Document;
33 import org.xml.sax.SAXException;
34
35 public class ConfigPersisterTest {
36     private static final Logger LOG = LoggerFactory.getLogger(ConfigPersisterTest.class);
37
38     private MockedBundleContext ctx;
39     private ConfigPersisterActivator configPersisterActivator;
40     private TestingExceptionHandler handler;
41
42     private void setUpContext(String requiredCapability) throws Exception {
43         DummyAdapterWithInitialSnapshot.expectedCapability = requiredCapability;
44         ctx = new MockedBundleContext(1000, 1000);
45         configPersisterActivator = new ConfigPersisterActivator();
46     }
47
48     private void setUpContextAndStartPersister(String requiredCapability, final NetconfOperationService conflictingService) throws Exception {
49         setUpContext(requiredCapability);
50         doReturn(conflictingService).when(ctx.serviceFactory).createService(anyString());
51         configPersisterActivator.start(ctx.getBundleContext());
52     }
53
54     @Before
55     public void setUp() {
56         handler = new TestingExceptionHandler();
57         Thread.setDefaultUncaughtExceptionHandler(handler);
58     }
59
60     @After
61     public void tearDown() throws Exception {
62         Thread.setDefaultUncaughtExceptionHandler(null);
63         configPersisterActivator.stop(ctx.getBundleContext());
64     }
65
66     @Test
67     public void testPersisterNotAllCapabilitiesProvided() throws Exception {
68         setUpContextAndStartPersister("required-cap", getConflictingService());
69         Thread.sleep(2000);
70         handler.assertException(IllegalStateException.class, "Required yang models that are missing: [required-cap]");
71
72     }
73
74     @Test
75     public void testPersisterSuccessfulPush() throws Exception {
76         setUpContextAndStartPersister("cap1", getWorkingService(getOKDocument()));
77         Thread.sleep(2000);
78         assertCannotRegisterAsJMXListener_pushWasSuccessful();
79     }
80
81     // this means pushing of config was successful
82     public void assertCannotRegisterAsJMXListener_pushWasSuccessful() {
83         handler.assertException(IllegalStateException.class, "Cannot register as JMX listener to netconf");
84     }
85
86     public NetconfOperationService getWorkingService(Document document) throws SAXException, IOException, NetconfDocumentedException {
87         NetconfOperationService service = mock(NetconfOperationService.class);
88         Capability capability = mock(Capability.class);
89 //        doReturn(Sets.newHashSet(capability)).when(service).getCapabilities();
90         doReturn("cap1").when(capability).getCapabilityUri();
91
92
93         NetconfOperation mockedOperation = mock(NetconfOperation.class);
94         doReturn(Sets.newHashSet(mockedOperation)).when(service).getNetconfOperations();
95         doReturn(HandlingPriority.getHandlingPriority(1)).when(mockedOperation).canHandle(any(Document.class));
96         doReturn(document).when(mockedOperation).handle(any(Document.class), any(NetconfOperationChainedExecution.class));
97         doNothing().when(service).close();
98         return service;
99     }
100
101     private Document getOKDocument() throws SAXException, IOException {
102         return XmlUtil.readXmlToDocument(
103                 "<rpc-reply message-id=\"1\" xmlns=\"urn:ietf:params:xml:ns:netconf:base:1.0\">\n" +
104                         "<ok/>\n" +
105                         "</rpc-reply>"
106         );
107     }
108
109
110     @Test
111     public void testPersisterConflictingVersionException() throws Exception {
112         setUpContextAndStartPersister("cap1", getConflictingService());
113
114         Thread.sleep(2000);
115         handler.assertException(IllegalStateException.class, "Max wait for conflicting version stabilization timeout");
116     }
117
118     private NetconfOperationService getConflictingService() throws Exception {
119         NetconfOperationService service =  getWorkingService(getOKDocument());
120         ConflictingVersionException cve = new ConflictingVersionException("");
121         try {
122             NetconfDocumentedException.wrap(cve);
123             throw new AssertionError("Should throw an exception");
124         }catch(NetconfDocumentedException e) {
125             NetconfOperation mockedOperation = service.getNetconfOperations().iterator().next();
126             doThrow(e).when(mockedOperation).handle(any(Document.class), any(NetconfOperationChainedExecution.class));
127             return service;
128         }
129     }
130
131     @Test
132     public void testSuccessConflictingVersionException() throws Exception {
133         LOG.info("testSuccessConflictingVersionException starting");
134
135         setUpContext("cap1");
136
137         NetconfOperationService conflictingService = getConflictingService();
138         NetconfOperationService workingService = getWorkingService(getOKDocument());
139
140         doReturn(conflictingService).doReturn(conflictingService).doReturn(conflictingService).
141             doReturn(workingService).when(ctx.serviceFactory).createService(anyString());
142
143         configPersisterActivator.start(ctx.getBundleContext());
144
145         Thread.sleep(1000);
146         assertCannotRegisterAsJMXListener_pushWasSuccessful();
147     }
148
149 }