aboutsummaryrefslogtreecommitdiffstats
path: root/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/services/util/ArtifactHandlerClientTest.java
blob: 8b3d023cc62ed4617ccc4b13270c18a0db073c94 (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
129
/*
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2019 Ericsson
 * ================================================================================
 * 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.
 *
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.design.services.util;

import static org.hamcrest.CoreMatchers.isA;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.security.NoSuchAlgorithmException;
import java.util.Properties;
import javax.net.ssl.SSLContext;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import org.powermock.reflect.Whitebox;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.WebResource.Builder;


@RunWith(PowerMockRunner.class)
@PrepareForTest({DesignServiceConstants.class, SSLContext.class, Client.class})
public class ArtifactHandlerClientTest {
    private SSLContext sslContext = PowerMockito.mock(SSLContext.class);
    private Client client;
    private WebResource webResource;
    private Builder builder;


    @Rule
    public ExpectedException expectedEx = ExpectedException.none();

    @Before
    public void setup() throws URISyntaxException {
        PowerMockito.mockStatic(DesignServiceConstants.class);
        PowerMockito.mockStatic(SSLContext.class);
        PowerMockito.mockStatic(Client.class);
        sslContext = PowerMockito.mock(SSLContext.class);
        client = Mockito.mock(Client.class);
        builder = PowerMockito.mock(Builder.class);
        webResource = PowerMockito.mock(WebResource.class);
        PowerMockito.when(Client.create(Mockito.anyObject())).thenReturn(client);
        webResource = PowerMockito.mock(WebResource.class);
        PowerMockito.when(client.resource(Mockito.any(URI.class))).thenReturn(webResource);
    }

    @Test
    public void testConstructorException() throws IOException {
        expectedEx.expect(IOException.class);
        new ArtifactHandlerClient();
    }

    @Test
    public void testConstructor() throws IOException {
        PowerMockito.when(DesignServiceConstants.getEnvironmentVariable(ArtifactHandlerClient.SDNC_CONFIG_DIR_VAR))
            .thenReturn("src/test/resources");
        ArtifactHandlerClient ahClient = new ArtifactHandlerClient();
        assertTrue(ahClient instanceof ArtifactHandlerClient);
        Properties props = Whitebox.getInternalState(ahClient, "props");
        assertTrue(props.containsKey("appc.upload.provider.url"));
    }

    @Test
    public void testCreateArtifactData() throws IOException {
        PowerMockito.when(DesignServiceConstants.getEnvironmentVariable(ArtifactHandlerClient.SDNC_CONFIG_DIR_VAR))
            .thenReturn("src/test/resources");
        ArtifactHandlerClient ahClient = new ArtifactHandlerClient();
        assertEquals("{\"input\": {\"request-information\":{\"request-id\":\"\",\"request-action\":"
                + "\"StoreSdcDocumentRequest\",\"source\":\"Design-tool\"},\"document-parameters\":"
                + "{\"artifact-version\":\"TEST\",\"artifact-name\":\"TEST\",\"artifact-contents\":"
                + "\"TEST\"}}}", ahClient.createArtifactData("{\"" + DesignServiceConstants.ARTIFACT_NAME
                + "\":\"TEST\", \"" + DesignServiceConstants.ARTIFACT_VERSOIN + "\":\"TEST\", \"" +
                DesignServiceConstants.ARTIFACT_CONTENTS + "\":\"TEST\"}", ""));
    }

    @Test
    public void testExecuteArtifactHandlerInternalException() throws IOException, NoSuchAlgorithmException {
        PowerMockito.when(SSLContext.getInstance("SSL")).thenReturn(sslContext);
        PowerMockito.when(DesignServiceConstants.getEnvironmentVariable(ArtifactHandlerClient.SDNC_CONFIG_DIR_VAR))
            .thenReturn("src/test/resources");
        builder = Mockito.mock(Builder.class);
        PowerMockito.when(webResource.accept("application/json")).thenReturn(builder);
        ArtifactHandlerClient ahClient = new ArtifactHandlerClient();
        Properties properties = new Properties();
        properties.put("appc.upload.user", "TEST_USER");
        properties.put("appc.upload.provider.url", "http://127.0.0.1:8080/path");
        properties.put("appc.upload.pass", "enc:password");
        Whitebox.setInternalState(ahClient, "props", properties);
        expectedEx.expectCause(isA(ArtifactHandlerInternalException.class));
        ahClient.execute("", "GET");
    }

    @Test
    public void testExecuteIOException() throws IOException, NoSuchAlgorithmException {
        PowerMockito.when(SSLContext.getInstance("SSL")).thenThrow(new RuntimeException());
        PowerMockito.when(DesignServiceConstants.getEnvironmentVariable(ArtifactHandlerClient.SDNC_CONFIG_DIR_VAR))
            .thenReturn("src/test/resources");
        ArtifactHandlerClient ahClient = new ArtifactHandlerClient();
        expectedEx.expect(IOException.class);
        ahClient.execute("", "");
    }
}