Modernize sal-rest-docgen tests a bit
[netconf.git] / restconf / sal-rest-docgen / src / test / java / org / opendaylight / controller / sal / rest / doc / impl / DocGenTestHelper.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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.rest.doc.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12 import static org.mockito.ArgumentMatchers.any;
13 import static org.mockito.Mockito.mock;
14 import static org.mockito.Mockito.when;
15
16 import com.fasterxml.jackson.databind.JsonNode;
17 import java.net.URI;
18 import javax.ws.rs.core.UriBuilder;
19 import javax.ws.rs.core.UriInfo;
20 import org.mockito.ArgumentCaptor;
21
22 final class DocGenTestHelper {
23
24     private DocGenTestHelper() {
25         // hidden on purpose
26     }
27
28     static UriInfo createMockUriInfo(final String urlPrefix) throws Exception {
29         final URI uri = new URI(urlPrefix);
30         final UriBuilder mockBuilder = mock(UriBuilder.class);
31
32         final ArgumentCaptor<String> subStringCapture = ArgumentCaptor.forClass(String.class);
33         when(mockBuilder.path(subStringCapture.capture())).thenReturn(mockBuilder);
34         when(mockBuilder.build()).then(invocation -> URI.create(uri + "/" + subStringCapture.getValue()));
35
36         final UriInfo info = mock(UriInfo.class);
37         when(info.getRequestUriBuilder()).thenReturn(mockBuilder);
38         when(mockBuilder.replaceQuery(any())).thenReturn(mockBuilder);
39         when(info.getBaseUri()).thenReturn(uri);
40
41         return info;
42     }
43
44     /**
45      * Checks whether object {@code mainObject} contains in properties/items key $ref with concrete value.
46      */
47     static void containsReferences(final JsonNode mainObject, final String childObject, final String expectedRef) {
48         final JsonNode properties = mainObject.get("properties");
49         assertNotNull(properties);
50
51         final JsonNode childNode = properties.get(childObject);
52         assertNotNull(childNode);
53
54         //list case
55         JsonNode refWrapper = childNode.get("items");
56         if (refWrapper == null) {
57             //container case
58             refWrapper = childNode;
59         }
60         assertEquals(expectedRef, refWrapper.get("$ref").asText());
61     }
62 }