963016bda62120a588b7f82593acbc54537884c4
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / websockets / test / RestStreamTest.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 package org.opendaylight.controller.sal.restconf.impl.websockets.test;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertTrue;
13 import static org.mockito.Mockito.mock;
14
15 import java.io.FileNotFoundException;
16 import java.io.UnsupportedEncodingException;
17 import java.net.URI;
18 import java.util.logging.Level;
19 import javax.ws.rs.client.Entity;
20 import javax.ws.rs.core.Application;
21 import javax.ws.rs.core.MediaType;
22 import javax.ws.rs.core.Response;
23
24 import org.glassfish.jersey.server.ResourceConfig;
25 import org.glassfish.jersey.test.JerseyTest;
26 import org.glassfish.jersey.test.TestProperties;
27 import org.junit.BeforeClass;
28 import org.junit.Ignore;
29 import org.junit.Test;
30 import org.opendaylight.controller.sal.restconf.impl.test.TestUtils;
31 import org.opendaylight.netconf.sal.rest.impl.JsonNormalizedNodeBodyReader;
32 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeJsonBodyWriter;
33 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeXmlBodyWriter;
34 import org.opendaylight.netconf.sal.rest.impl.RestconfDocumentedExceptionMapper;
35 import org.opendaylight.netconf.sal.rest.impl.XmlNormalizedNodeBodyReader;
36 import org.opendaylight.netconf.sal.restconf.impl.BrokerFacade;
37 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
38 import org.opendaylight.netconf.sal.restconf.impl.RestconfImpl;
39 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
40 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
41 import org.w3c.dom.Document;
42 import org.w3c.dom.Element;
43 import org.w3c.dom.Node;
44
45 public class RestStreamTest extends JerseyTest {
46
47     private static BrokerFacade brokerFacade;
48     private static RestconfImpl restconfImpl;
49     private static SchemaContext schemaContextYangsIetf;
50
51     @BeforeClass
52     public static void init() throws FileNotFoundException, ReactorException {
53         schemaContextYangsIetf = TestUtils.loadSchemaContext("/full-versions/yangs");
54         final ControllerContext controllerContext = ControllerContext.getInstance();
55         controllerContext.setSchemas(schemaContextYangsIetf);
56         brokerFacade = mock(BrokerFacade.class);
57         restconfImpl = RestconfImpl.getInstance();
58         restconfImpl.setBroker(brokerFacade);
59         restconfImpl.setControllerContext(controllerContext);
60     }
61
62     @Override
63     protected Application configure() {
64         /* enable/disable Jersey logs to console */
65         // enable(TestProperties.LOG_TRAFFIC);
66         // enable(TestProperties.DUMP_ENTITY);
67         // enable(TestProperties.RECORD_LOG_LEVEL);
68         // set(TestProperties.RECORD_LOG_LEVEL, Level.ALL.intValue());
69         ResourceConfig resourceConfig = new ResourceConfig();
70         resourceConfig = resourceConfig.registerInstances(restconfImpl, new NormalizedNodeJsonBodyWriter(),
71                 new NormalizedNodeXmlBodyWriter(), new XmlNormalizedNodeBodyReader(), new JsonNormalizedNodeBodyReader());
72         resourceConfig.registerClasses(RestconfDocumentedExceptionMapper.class);
73         return resourceConfig;
74     }
75
76     @Test
77     @Ignore // Sporadic failures where jersey does not correctly pass post data to XmlNormalizedNodeBodyReader.readFrom
78     public void testCallRpcCallGet() throws UnsupportedEncodingException, InterruptedException {
79         createAndSubscribe(null);
80     }
81
82     @Test
83     @Ignore // Sporadic failures where jersey does not correctly pass post data to XmlNormalizedNodeBodyReader.readFrom
84     public void testCallRpcCallGetLeaves() throws UnsupportedEncodingException, InterruptedException {
85         createAndSubscribe("odl-leaf-nodes-only", "true");
86     }
87
88     private void createAndSubscribe(String queryParamName, Object... values)
89                                                 throws UnsupportedEncodingException, InterruptedException {
90         String uri = "/operations/sal-remote:create-data-change-event-subscription";
91         String rpcInput = getRpcInput();
92         final Response responseWithStreamName = post(uri, MediaType.APPLICATION_XML, rpcInput);
93         final Document xmlResponse = responseWithStreamName.readEntity(Document.class);
94         assertNotNull(xmlResponse);
95         final Element outputElement = xmlResponse.getDocumentElement();
96         assertEquals("output",outputElement.getLocalName());
97
98         final Node streamNameElement = outputElement.getFirstChild();
99         assertEquals("stream-name",streamNameElement.getLocalName());
100         assertEquals("data-change-event-subscription/ietf-interfaces:interfaces/ietf-interfaces:interface/eth0/datastore=CONFIGURATION/scope=BASE",streamNameElement.getTextContent());
101
102         uri = "/streams/stream/data-change-event-subscription/ietf-interfaces:interfaces/ietf-interfaces:interface/eth0/datastore=CONFIGURATION/scope=BASE";
103         final Response responseWithRedirectionUri = get(uri, MediaType.APPLICATION_XML, null);
104         final URI websocketServerUri = responseWithRedirectionUri.getLocation();
105         assertNotNull(websocketServerUri);
106         assertTrue(websocketServerUri.toString().matches(".*ws://localhost:[\\d]+/data-change-event-subscription/ietf-interfaces:interfaces/ietf-interfaces:interface/eth0.*"));
107     }
108
109     private Response post(final String uri, final String mediaType, final String data) {
110         return target(uri).request(mediaType).post(Entity.entity(data, mediaType));
111     }
112
113     private Response get(final String uri, final String mediaType, String queryParam, Object... values) {
114         if (queryParam != null) {
115             return target(uri).queryParam(queryParam, values).request(mediaType).get();
116         } else {
117             return target(uri).request(mediaType).get();
118         }
119     }
120
121     private static String getRpcInput() {
122         final StringBuilder sb = new StringBuilder();
123         sb.append("<input xmlns=\"urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote\">");
124         sb.append("<path xmlns:int=\"urn:ietf:params:xml:ns:yang:ietf-interfaces\">/int:interfaces/int:interface[int:name='eth0']</path>");
125         sb.append("</input>");
126         return sb.toString();
127     }
128
129 }