summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/ComponentPropertyServletTest.java
blob: b816702317d2739604acc7a8ce3690b6ea1fe2dd (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package org.openecomp.sdc.be.servlets;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.when;

import com.google.gson.Gson;
import fj.data.Either;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpSession;
import javax.ws.rs.core.Response;
import org.glassfish.grizzly.http.util.HttpStatus;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Spy;
import org.mockito.junit.MockitoJUnitRunner;
import org.openecomp.sdc.be.components.impl.PropertyBusinessLogic;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.impl.ComponentsUtils;
import org.openecomp.sdc.be.impl.WebAppContextWrapper;
import org.openecomp.sdc.be.model.PropertyDefinition;
import org.openecomp.sdc.be.resources.data.EntryData;
import org.openecomp.sdc.common.api.Constants;
import org.openecomp.sdc.exception.ResponseFormat;
import org.springframework.web.context.WebApplicationContext;

@RunWith(MockitoJUnitRunner.class)
public class ComponentPropertyServletTest extends JerseySpringBaseTest {
    @Mock
    private static HttpSession session;
    @Mock
    private static ServletContext context;
    @Mock
    private static WebAppContextWrapper wrapper;
    @Mock
    private static WebApplicationContext webAppContext;
    @Mock
    private static PropertyBusinessLogic propertyBl;
    @Mock
    private static ComponentsUtils componentsUtils;
    @InjectMocks
    @Spy
    private ComponentPropertyServlet componentPropertyServlet;

    private static final String SERVICE_ID = "service1";
    private final static String USER_ID = "jh0003";
    private static final String VALID_PROPERTY_NAME = "valid_name_123";
    private static final String INVALID_PROPERTY_NAME = "invalid_name_$.&";
    private static final String STRING_TYPE = "string";

    @Before
    public void initClass() {
        initMockitoStubbings();
    }

    @Test
    public void testCreatePropertyOnService_success() {
        PropertyDefinition property = new PropertyDefinition();
        property.setName(VALID_PROPERTY_NAME);
        property.setType(STRING_TYPE);

        EntryData<String, PropertyDefinition> propertyEntry = new EntryData<>(VALID_PROPERTY_NAME, property);
        when(propertyBl.addPropertyToComponent(eq(SERVICE_ID), any(), any(), any())).thenReturn(Either.left(propertyEntry));

        Response propertyInService =
                componentPropertyServlet.createPropertyInService(SERVICE_ID, getValidProperty(), request, USER_ID);

        Assert.assertEquals(HttpStatus.OK_200.getStatusCode(), propertyInService.getStatus());
    }

    @Test
    public void testCreatePropertyInvalidName_failure() {
        PropertyDefinition property = new PropertyDefinition();
        property.setName(INVALID_PROPERTY_NAME);
        property.setType(STRING_TYPE);

        ResponseFormat responseFormat = new ResponseFormat();
        responseFormat.setStatus(HttpStatus.BAD_REQUEST_400.getStatusCode());

        when(componentsUtils.getResponseFormat(eq(ActionStatus.INVALID_PROPERTY_NAME))).thenReturn(responseFormat);


        Response propertyInService =
                componentPropertyServlet.createPropertyInService(SERVICE_ID, getInvalidProperty(), request, USER_ID);

        Assert.assertEquals(HttpStatus.BAD_REQUEST_400.getStatusCode(), propertyInService.getStatus());
    }

    private static void initMockitoStubbings() {
        when(request.getSession()).thenReturn(session);
        when(session.getServletContext()).thenReturn(context);
        when(context.getAttribute(eq(Constants.WEB_APPLICATION_CONTEXT_WRAPPER_ATTR))).thenReturn(wrapper);
        when(wrapper.getWebAppContext(any())).thenReturn(webAppContext);
        when(webAppContext.getBean(eq(PropertyBusinessLogic.class))).thenReturn(propertyBl);
        when(webAppContext.getBean(eq(ComponentsUtils.class))).thenReturn(componentsUtils);
    }

    private String getValidProperty() {
        return "{\n"
                       + "  \"valid_name_123\": {\n"
                       + "    \"schema\": {\n"
                       + "      \"property\": {\n"
                       + "        \"type\": \"\"\n"
                       + "      }\n" + "    },\n"
                       + "    \"type\": \"string\",\n"
                       + "    \"name\": \"valid_name_123\"\n"
                       + "  }\n"
                       + "}";
    }

    private String getInvalidProperty() {
        return "{\n"
                       + "  \"invalid_name_$.&\": {\n"
                       + "    \"schema\": {\n"
                       + "      \"property\": {\n"
                       + "        \"type\": \"\"\n"
                       + "      }\n" + "    },\n"
                       + "    \"type\": \"string\",\n"
                       + "    \"name\": \"invalid_name_$.&\"\n"
                       + "  }\n"
                       + "}";
    }

}