Switch time keeping to java.time interfaces
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / restconf / jersey / providers / AbstractBodyReaderTest.java
1 /*
2  * Copyright (c) 2016 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.restconf.jersey.providers;
10
11 import static org.junit.Assert.assertNotNull;
12 import static org.mockito.Mockito.mock;
13 import static org.mockito.Mockito.when;
14
15 import java.lang.reflect.Field;
16 import java.util.Collections;
17 import javax.ws.rs.core.MediaType;
18 import javax.ws.rs.core.MultivaluedHashMap;
19 import javax.ws.rs.core.MultivaluedMap;
20 import javax.ws.rs.core.Request;
21 import javax.ws.rs.core.UriInfo;
22 import org.opendaylight.controller.md.sal.rest.common.TestRestconfUtils;
23 import org.opendaylight.netconf.sal.rest.api.RestconfConstants;
24 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
25 import org.opendaylight.netconf.sal.restconf.impl.NormalizedNodeContext;
26 import org.opendaylight.netconf.sal.restconf.impl.PATCHContext;
27 import org.opendaylight.restconf.RestConnectorProvider;
28 import org.opendaylight.restconf.handlers.DOMMountPointServiceHandler;
29 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
30
31 abstract class AbstractBodyReaderTest {
32
33     protected final static ControllerContext controllerContext = ControllerContext.getInstance();
34     protected final MediaType mediaType;
35     protected final static DOMMountPointServiceHandler mountPointServiceHandler = mock(
36             DOMMountPointServiceHandler.class);
37
38     AbstractBodyReaderTest() throws NoSuchFieldException, IllegalAccessException {
39         mediaType = getMediaType();
40
41         final Field mountPointServiceHandlerField = RestConnectorProvider.class.
42                 getDeclaredField("mountPointServiceHandler");
43         mountPointServiceHandlerField.setAccessible(true);
44         mountPointServiceHandlerField.set(RestConnectorProvider.class, mountPointServiceHandler);
45     }
46
47     protected abstract MediaType getMediaType();
48
49     protected static SchemaContext schemaContextLoader(final String yangPath,
50             final SchemaContext schemaContext) {
51         return TestRestconfUtils.loadSchemaContext(yangPath, schemaContext);
52     }
53
54     protected static <T extends AbstractIdentifierAwareJaxRsProvider> void mockBodyReader(
55             final String identifier, final T normalizedNodeProvider,
56             final boolean isPost) throws NoSuchFieldException,
57             SecurityException, IllegalArgumentException, IllegalAccessException {
58         final UriInfo uriInfoMock = mock(UriInfo.class);
59         final MultivaluedMap<String, String> pathParm = new MultivaluedHashMap<>(1);
60
61         if (!identifier.isEmpty()) {
62             pathParm.put(RestconfConstants.IDENTIFIER, Collections.singletonList(identifier));
63         }
64
65         when(uriInfoMock.getPathParameters()).thenReturn(pathParm);
66         when(uriInfoMock.getPathParameters(false)).thenReturn(pathParm);
67         when(uriInfoMock.getPathParameters(true)).thenReturn(pathParm);
68         normalizedNodeProvider.setUriInfo(uriInfoMock);
69
70         final Request request = mock(Request.class);
71         if (isPost) {
72             when(request.getMethod()).thenReturn("POST");
73         } else {
74             when(request.getMethod()).thenReturn("PUT");
75         }
76
77         normalizedNodeProvider.setRequest(request);
78     }
79
80     protected static void checkNormalizedNodeContext(
81             final NormalizedNodeContext nnContext) {
82         assertNotNull(nnContext.getData());
83         assertNotNull(nnContext.getInstanceIdentifierContext()
84                 .getInstanceIdentifier());
85         assertNotNull(nnContext.getInstanceIdentifierContext()
86                 .getSchemaContext());
87         assertNotNull(nnContext.getInstanceIdentifierContext().getSchemaNode());
88     }
89
90     protected static void checkPATCHContext(final PATCHContext patchContext) {
91         assertNotNull(patchContext.getData());
92         assertNotNull(patchContext.getInstanceIdentifierContext().getInstanceIdentifier());
93         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaContext());
94         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaNode());
95     }
96
97     protected static void checkPATCHContextMountPoint(final PATCHContext patchContext) {
98         checkPATCHContext(patchContext);
99         assertNotNull(patchContext.getInstanceIdentifierContext().getMountPoint());
100         assertNotNull(patchContext.getInstanceIdentifierContext().getMountPoint().getSchemaContext());
101     }
102 }