ff7b770fbb9376355ee72d349d6abfec9d2fc736
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / rest / impl / test / providers / Draft11AbstractBodyReaderTest.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.controller.sal.rest.impl.test.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.utils.patch.Draft11AbstractIdentifierAwareJaxRsProvider;
28 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
29
30 public abstract class Draft11AbstractBodyReaderTest {
31
32     protected final static ControllerContext controllerContext = ControllerContext.getInstance();
33     protected final MediaType mediaType;
34     private static Field uriField;
35     private static Field requestField;
36
37     public Draft11AbstractBodyReaderTest() throws NoSuchFieldException,
38             SecurityException {
39         uriField = Draft11AbstractIdentifierAwareJaxRsProvider.class
40                 .getDeclaredField("uriInfo");
41         uriField.setAccessible(true);
42         requestField = Draft11AbstractIdentifierAwareJaxRsProvider.class
43                 .getDeclaredField("request");
44         requestField.setAccessible(true);
45         mediaType = getMediaType();
46     }
47
48     protected abstract MediaType getMediaType();
49
50     protected static SchemaContext schemaContextLoader(final String yangPath,
51             final SchemaContext schemaContext) {
52         return TestRestconfUtils.loadSchemaContext(yangPath, schemaContext);
53     }
54
55     protected static <T extends Draft11AbstractIdentifierAwareJaxRsProvider> void mockBodyReader(
56             final String identifier, final T normalizedNodeProvider,
57             final boolean isPost) throws NoSuchFieldException,
58             SecurityException, IllegalArgumentException, IllegalAccessException {
59         final UriInfo uriInfoMock = mock(UriInfo.class);
60         final MultivaluedMap<String, String> pathParm = new MultivaluedHashMap<>(1);
61
62         if (!identifier.isEmpty()) {
63             pathParm.put(RestconfConstants.IDENTIFIER, Collections.singletonList(identifier));
64         }
65
66         when(uriInfoMock.getPathParameters()).thenReturn(pathParm);
67         when(uriInfoMock.getPathParameters(false)).thenReturn(pathParm);
68         when(uriInfoMock.getPathParameters(true)).thenReturn(pathParm);
69         uriField.set(normalizedNodeProvider, uriInfoMock);
70
71         final Request request = mock(Request.class);
72         if (isPost) {
73             when(request.getMethod()).thenReturn("POST");
74         } else {
75             when(request.getMethod()).thenReturn("PUT");
76         }
77
78         requestField.set(normalizedNodeProvider, request);
79     }
80
81     protected static void checkMountPointNormalizedNodeContext(
82             final NormalizedNodeContext nnContext) {
83         checkNormalizedNodeContext(nnContext);
84         assertNotNull(nnContext.getInstanceIdentifierContext().getMountPoint());
85     }
86
87     protected static void checkNormalizedNodeContext(
88             final NormalizedNodeContext nnContext) {
89         assertNotNull(nnContext.getData());
90         assertNotNull(nnContext.getInstanceIdentifierContext()
91                 .getInstanceIdentifier());
92         assertNotNull(nnContext.getInstanceIdentifierContext()
93                 .getSchemaContext());
94         assertNotNull(nnContext.getInstanceIdentifierContext().getSchemaNode());
95     }
96
97     protected static void checkPATCHContext(final PATCHContext patchContext) {
98         assertNotNull(patchContext.getData());
99         assertNotNull(patchContext.getInstanceIdentifierContext().getInstanceIdentifier());
100         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaContext());
101         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaNode());
102     }
103 }