Remove RestconfError.ErrorTag
[netconf.git] / restconf / restconf-nb-rfc8040 / src / test / java / org / opendaylight / restconf / nb / rfc8040 / jersey / providers / test / 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 package org.opendaylight.restconf.nb.rfc8040.jersey.providers.test;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertThrows;
13 import static org.mockito.ArgumentMatchers.any;
14 import static org.mockito.Mockito.doReturn;
15 import static org.mockito.Mockito.mock;
16 import static org.mockito.Mockito.when;
17
18 import java.util.List;
19 import java.util.Optional;
20 import javax.ws.rs.core.MediaType;
21 import javax.ws.rs.core.MultivaluedHashMap;
22 import javax.ws.rs.core.MultivaluedMap;
23 import javax.ws.rs.core.Request;
24 import javax.ws.rs.core.Response.Status;
25 import javax.ws.rs.core.UriInfo;
26 import org.junit.function.ThrowingRunnable;
27 import org.opendaylight.mdsal.dom.api.DOMMountPoint;
28 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
29 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
30 import org.opendaylight.mdsal.dom.spi.FixedDOMSchemaService;
31 import org.opendaylight.restconf.common.context.NormalizedNodeContext;
32 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
33 import org.opendaylight.restconf.common.errors.RestconfError;
34 import org.opendaylight.restconf.common.patch.PatchContext;
35 import org.opendaylight.restconf.nb.rfc8040.TestRestconfUtils;
36 import org.opendaylight.restconf.nb.rfc8040.TestUtils;
37 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
38 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.spi.AbstractIdentifierAwareJaxRsProvider;
39 import org.opendaylight.yangtools.yang.common.ErrorTag;
40 import org.opendaylight.yangtools.yang.common.ErrorType;
41 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
42 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
43
44 public abstract class AbstractBodyReaderTest {
45     protected final MediaType mediaType;
46     protected final SchemaContextHandler schemaContextHandler;
47     protected final DOMMountPointService mountPointService;
48
49     protected AbstractBodyReaderTest(final EffectiveModelContext schemaContext) throws NoSuchFieldException,
50             IllegalAccessException {
51         mediaType = getMediaType();
52
53         schemaContextHandler = TestUtils.newSchemaContextHandler(schemaContext);
54
55         mountPointService = mock(DOMMountPointService.class);
56         final DOMMountPoint mountPoint = mock(DOMMountPoint.class);
57         doReturn(Optional.of(mountPoint)).when(mountPointService).getMountPoint(any(YangInstanceIdentifier.class));
58         doReturn(Optional.of(FixedDOMSchemaService.of(schemaContext))).when(mountPoint)
59             .getService(DOMSchemaService.class);
60     }
61
62     protected abstract MediaType getMediaType();
63
64     protected static EffectiveModelContext schemaContextLoader(final String yangPath,
65             final EffectiveModelContext schemaContext) {
66         return TestRestconfUtils.loadSchemaContext(yangPath, schemaContext);
67     }
68
69     protected static <T extends AbstractIdentifierAwareJaxRsProvider<?>> void mockBodyReader(
70             final String identifier, final T normalizedNodeProvider, final boolean isPost) {
71         final UriInfo uriInfoMock = mock(UriInfo.class);
72         final MultivaluedMap<String, String> pathParm = new MultivaluedHashMap<>(1);
73
74         if (!identifier.isEmpty()) {
75             pathParm.put("identifier", List.of(identifier));
76         }
77
78         when(uriInfoMock.getPathParameters()).thenReturn(pathParm);
79         when(uriInfoMock.getPathParameters(false)).thenReturn(pathParm);
80         when(uriInfoMock.getPathParameters(true)).thenReturn(pathParm);
81         normalizedNodeProvider.setUriInfo(uriInfoMock);
82
83         final Request request = mock(Request.class);
84         if (isPost) {
85             when(request.getMethod()).thenReturn("POST");
86         } else {
87             when(request.getMethod()).thenReturn("PUT");
88         }
89
90         normalizedNodeProvider.setRequest(request);
91     }
92
93     protected static void checkMountPointNormalizedNodeContext(
94             final NormalizedNodeContext nnContext) {
95         checkNormalizedNodeContext(nnContext);
96         assertNotNull(nnContext.getInstanceIdentifierContext().getMountPoint());
97     }
98
99     protected static void checkNormalizedNodeContext(
100             final NormalizedNodeContext nnContext) {
101         assertNotNull(nnContext.getData());
102         assertNotNull(nnContext.getInstanceIdentifierContext()
103                 .getInstanceIdentifier());
104         assertNotNull(nnContext.getInstanceIdentifierContext()
105                 .getSchemaContext());
106         assertNotNull(nnContext.getInstanceIdentifierContext().getSchemaNode());
107     }
108
109     protected static void checkPatchContext(final PatchContext patchContext) {
110         assertNotNull(patchContext.getData());
111         assertNotNull(patchContext.getInstanceIdentifierContext().getInstanceIdentifier());
112         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaContext());
113         assertNotNull(patchContext.getInstanceIdentifierContext().getSchemaNode());
114     }
115
116     protected static void checkPatchContextMountPoint(final PatchContext patchContext) {
117         checkPatchContext(patchContext);
118         assertNotNull(patchContext.getInstanceIdentifierContext().getMountPoint());
119     }
120
121     protected static EffectiveModelContext modelContext(final DOMMountPoint mountPoint) {
122         return mountPoint.getService(DOMSchemaService.class)
123             .flatMap(svc -> Optional.ofNullable(svc.getGlobalContext()))
124             .orElse(null);
125     }
126
127     protected static void assertRangeViolation(final ThrowingRunnable runnable) {
128         final RestconfDocumentedException ex = assertThrows(RestconfDocumentedException.class, runnable);
129         assertEquals(Status.BAD_REQUEST, ex.getResponse().getStatusInfo());
130
131         final List<RestconfError> errors = ex.getErrors();
132         assertEquals(1, errors.size());
133
134         final RestconfError error = errors.get(0);
135         assertEquals(ErrorType.APPLICATION, error.getErrorType());
136         assertEquals(ErrorTag.INVALID_VALUE, error.getErrorTag());
137         assertEquals("bar error app tag", error.getErrorAppTag());
138         assertEquals("bar error message", error.getErrorMessage());
139     }
140 }