summaryrefslogtreecommitdiffstats
path: root/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/restapi/TestSwaggerDefinitionConsistency.java
blob: 77406c248f6ca8336ad0c4ec01cd7b7bcbe0c78b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * Copyright 2016-2017, Nokia Corporation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi;

import com.google.common.collect.HashMultimap;
import com.google.common.collect.Sets;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Set;
import junit.framework.TestCase;
import org.junit.Test;
import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.TestBase;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.CbamUtils.child;
import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestUtil.loadFile;

public class TestSwaggerDefinitionConsistency extends TestBase {

    public static final HashSet<Class<?>> CLASSES = Sets.newHashSet(LcmApi.class, LcnApi.class, SwaggerApi.class, ConverterApi.class, SoV2Api.class);

    @Test
    public void test() throws Exception {
        JsonObject root = new JsonParser().parse(new String(loadFile("self.swagger.json"))).getAsJsonObject();
        String basePath = root.get("basePath").getAsString();
        HashMultimap<String, RequestMethod> expectedPaths = HashMultimap.create();
        for (Map.Entry<String, JsonElement> pathName : child(root, "paths").entrySet()) {
            JsonObject path = child(child(root, "paths"), pathName.getKey());
            for (Map.Entry<String, JsonElement> method : path.entrySet()) {
                locate(basePath + pathName.getKey());
                expectedPaths.put(basePath + pathName.getKey(), RequestMethod.valueOf(method.getKey().toUpperCase()));
            }
        }

        for (Class<?> clazz : CLASSES) {
            RequestMapping currentBasePath = clazz.getAnnotation(RequestMapping.class);
            for (Method method : clazz.getMethods()) {
                RequestMapping methodMapping = method.getAnnotation(RequestMapping.class);
                if (methodMapping != null) {
                    String fPath = currentBasePath.value()[0] + methodMapping.value()[0];
                    RequestMethod restMethod = methodMapping.method()[0];
                    Set<RequestMethod> currentMethods = expectedPaths.get(fPath);
                    if (!currentMethods.contains(restMethod)) {
                        TestCase.fail("Not documented REST API " + fPath + " " + restMethod + " current " + currentMethods);
                    }
                }
            }
        }
    }

    private void locate(String path) {
        Set<String> paths = new HashSet<>();
        for (Class<?> clazz : CLASSES) {
            RequestMapping basePath = clazz.getAnnotation(RequestMapping.class);
            for (Method method : clazz.getMethods()) {
                RequestMapping methodMapping = method.getAnnotation(RequestMapping.class);
                if (methodMapping != null) {
                    paths.add(basePath.value()[0] + methodMapping.value()[0]);
                    if (path.equals(basePath.value()[0] + methodMapping.value()[0])) {
                        return;
                    }
                }
            }
        }
        for (Class<?> clazz : CLASSES) {
            RequestMapping basePath = clazz.getAnnotation(RequestMapping.class);
            for (Method method : clazz.getMethods()) {
                RequestMapping methodMapping = method.getAnnotation(RequestMapping.class);
                if (methodMapping != null) {
                    paths.add(basePath.value()[0] + methodMapping.value()[0]);
                    if (path.equals(basePath.value()[0] + methodMapping.value()[0])) {
                        return;
                    }
                }
            }
        }
        throw new NoSuchElementException(path + " in " + paths);
    }
}