aboutsummaryrefslogtreecommitdiffstats
path: root/datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/DmaapProducerHttpClientTest.java
blob: 1ddb3a5c0c009248cab6a7e4d3ee0411128ab7b3 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
 * ============LICENSE_START======================================================================
 * Copyright (C) 2018, 2020 NOKIA Intellectual Property, 2018-2019 Nordix Foundation. All rights reserved.
 * ===============================================================================================
 * 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.dcaegen2.collectors.datafile.service.producer;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.Mockito.when;

import java.nio.charset.StandardCharsets;
import java.security.KeyManagementException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.time.Duration;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.Future;

import javax.net.ssl.SSLContext;

import org.apache.commons.codec.binary.Base64;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.conn.ssl.NoopHostnameVerifier;
import org.apache.http.impl.nio.client.CloseableHttpAsyncClient;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.onap.dcaegen2.collectors.datafile.configuration.PublisherConfiguration;
import org.onap.dcaegen2.collectors.datafile.exceptions.DatafileTaskException;
import org.onap.dcaegen2.collectors.datafile.http.HttpAsyncClientBuilderWrapper;
import org.onap.dcaegen2.collectors.datafile.web.PublishRedirectStrategy;

/**
 * Test for DmaapProducerHttpClient.
 *
 * @author <a href="mailto:przemyslaw.wasala@nokia.com">Przemysław Wąsala</a> on 7/4/18
 * @author <a href="mailto:henrik.b.andersson@est.tech">Henrik Andersson</a>
 */
class DmaapProducerHttpClientTest {

    private static final String HOST = "54.45.33.2";
    private static final String HTTPS_SCHEME = "https";
    private static final int PORT = 1234;
    private static final String USER_NAME = "dradmin";
    private static final Duration TWO_SECOND_TIMEOUT = Duration.ofSeconds(2);

    private static final Map<String, String> CONTEXT_MAP = new HashMap<>();

    private DmaapProducerHttpClient producerClientUnderTestSpy;

    private PublisherConfiguration dmaapPublisherConfigurationMock = mock(PublisherConfiguration.class);

    private HttpAsyncClientBuilderWrapper clientBuilderMock;

    private CloseableHttpAsyncClient clientMock;
    @SuppressWarnings("unchecked")
    private Future<HttpResponse> futureMock = mock(Future.class);

    @BeforeEach
    void setUp() throws KeyManagementException, NoSuchAlgorithmException, KeyStoreException {
        when(dmaapPublisherConfigurationMock.userName()).thenReturn("dradmin");
        when(dmaapPublisherConfigurationMock.password()).thenReturn("dradmin");

        producerClientUnderTestSpy = spy(new DmaapProducerHttpClient(dmaapPublisherConfigurationMock));

        clientBuilderMock = mock(HttpAsyncClientBuilderWrapper.class);
        clientMock = mock(CloseableHttpAsyncClient.class);
    }

    @Test
    void getHttpResponseWithRederict_Success() throws Exception {
        doReturn(clientBuilderMock).when(producerClientUnderTestSpy).getHttpClientBuilder();
        when(clientBuilderMock.setSslContext(any(SSLContext.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.setSslHostnameVerifier(any(NoopHostnameVerifier.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.build()).thenReturn(clientMock);
        when(clientMock.execute(any(HttpUriRequest.class), any())).thenReturn(futureMock);
        HttpResponse responseMock = mock(HttpResponse.class);
        when(futureMock.get()).thenReturn(responseMock);

        HttpGet request = new HttpGet();
        producerClientUnderTestSpy.getDmaapProducerResponseWithRedirect(request, CONTEXT_MAP);

        verify(clientBuilderMock).setSslContext(any(SSLContext.class));
        verify(clientBuilderMock).setSslHostnameVerifier(any(NoopHostnameVerifier.class));
        verify(clientBuilderMock).setRedirectStrategy(any(PublishRedirectStrategy.class));
        verify(clientBuilderMock).setDefaultRequestConfig(any());
        verify(clientBuilderMock).build();
        verifyNoMoreInteractions(clientBuilderMock);

        verify(clientMock).start();
        verify(clientMock).close();

        verify(futureMock).get();
        verifyNoMoreInteractions(futureMock);
    }

    @Test
    void getHttpResponseWithCustomTimeout_Success() throws Exception {
        doReturn(clientBuilderMock).when(producerClientUnderTestSpy).getHttpClientBuilder();
        when(clientBuilderMock.setSslContext(any(SSLContext.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.setDefaultRequestConfig(any(RequestConfig.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.build()).thenReturn(clientMock);
        when(clientMock.execute(any(HttpUriRequest.class), any())).thenReturn(futureMock);
        HttpResponse responseMock = mock(HttpResponse.class);
        when(futureMock.get()).thenReturn(responseMock);

        HttpGet request = new HttpGet();
        producerClientUnderTestSpy.getDmaapProducerResponseWithCustomTimeout(request, TWO_SECOND_TIMEOUT, CONTEXT_MAP);

        ArgumentCaptor<RequestConfig> requestConfigCaptor = ArgumentCaptor.forClass(RequestConfig.class);
        verify(clientBuilderMock).setSslContext(any(SSLContext.class));
        verify(clientBuilderMock).setSslHostnameVerifier(any(NoopHostnameVerifier.class));
        verify(clientBuilderMock).setDefaultRequestConfig(requestConfigCaptor.capture());
        RequestConfig requestConfig = requestConfigCaptor.getValue();
        assertEquals(TWO_SECOND_TIMEOUT.toMillis(), requestConfig.getSocketTimeout());
        assertEquals(TWO_SECOND_TIMEOUT.toMillis(), requestConfig.getConnectTimeout());
        assertEquals(TWO_SECOND_TIMEOUT.toMillis(), requestConfig.getConnectionRequestTimeout());
        verify(clientBuilderMock).build();
        verifyNoMoreInteractions(clientBuilderMock);

        verify(clientMock).start();
        verify(clientMock).close();

        verify(futureMock).get();
        verifyNoMoreInteractions(futureMock);
    }

    @Test
    public void getResponseWithException_throwsException() throws Exception {
        doReturn(clientBuilderMock).when(producerClientUnderTestSpy).getHttpClientBuilder();
        when(clientBuilderMock.setDefaultRequestConfig(any(RequestConfig.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.setSslContext(any(SSLContext.class))).thenReturn(clientBuilderMock);
        when(clientBuilderMock.build()).thenReturn(clientMock);
        HttpPut request = new HttpPut();
        when(clientMock.execute(any(HttpPut.class), any())).thenReturn(futureMock);

        try {
            when(futureMock.get()).thenThrow(new InterruptedException("Interrupted"));

            producerClientUnderTestSpy.getDmaapProducerResponseWithCustomTimeout(request, TWO_SECOND_TIMEOUT,
                CONTEXT_MAP);

            fail("Should have got an exception.");
        } catch (DatafileTaskException e) {
            assertTrue(e.getCause() instanceof InterruptedException);
            assertEquals("Interrupted", e.getCause().getMessage());
        } catch (Exception e) {
            fail("Wrong exception");
        }

        verify(clientMock).start();
        verify(clientMock).close();
    }

    @Test
    public void addCredentialsToHead_success() {
        HttpPut request = new HttpPut();

        producerClientUnderTestSpy.addUserCredentialsToHead(request);

        String plainCreds = USER_NAME + ":" + USER_NAME;
        byte[] plainCredsBytes = plainCreds.getBytes(StandardCharsets.ISO_8859_1);
        byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes);
        String base64Creds = "Basic " + new String(base64CredsBytes);
        Header[] authorizationHeaders = request.getHeaders("Authorization");
        assertEquals(base64Creds, authorizationHeaders[0].getValue());
    }
}