summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/CambriaHandlerTest.java
blob: 83798b3208a3553ccf8a005563f0eaf5ed3d41c5 (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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
package org.openecomp.sdc.be.components.distribution.engine;

import com.att.nsa.apiClient.credentials.ApiCredential;
import com.att.nsa.apiClient.http.HttpException;
import com.att.nsa.cambria.client.CambriaClient;
import com.att.nsa.cambria.client.CambriaClient.CambriaApiException;
import com.att.nsa.cambria.client.CambriaClientBuilders.AbstractAuthenticatedManagerBuilder;
import com.att.nsa.cambria.client.CambriaClientBuilders.TopicManagerBuilder;
import com.att.nsa.cambria.client.CambriaConsumer;
import com.att.nsa.cambria.client.CambriaIdentityManager;
import fj.data.Either;
import mockit.Deencapsulation;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.Spy;
import org.mockito.junit.MockitoJUnitRunner;
import org.openecomp.sdc.be.components.BeConfDependentTest;
import org.openecomp.sdc.be.config.ConfigurationManager;
import org.openecomp.sdc.be.distribution.api.client.CambriaOperationStatus;
import org.openecomp.sdc.common.api.ConfigurationSource;
import org.openecomp.sdc.common.impl.ExternalConfiguration;
import org.openecomp.sdc.common.impl.FSConfigurationSource;

import java.io.IOException;
import java.net.MalformedURLException;
import java.security.GeneralSecurityException;
import java.util.*;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doReturn;

@RunWith(MockitoJUnitRunner.class)
public class CambriaHandlerTest extends BeConfDependentTest {

	private CambriaHandler createTestSubject() {
		return new CambriaHandler();
	}

	@Spy
	private CambriaHandler handler = new CambriaHandler();

	@Mock
	private CambriaIdentityManager createIdentityManager;

	private ApiCredential apiCredential = new ApiCredential("apiKey", "apiSecret");

	@BeforeClass
	public static void beforeClass() {
		String appConfigDir = "src/test/resources/config/catalog-be";
		ConfigurationSource configurationSource = new FSConfigurationSource(ExternalConfiguration.getChangeListener(),
				appConfigDir);
		new ConfigurationManager(configurationSource);
	}

	@Before
	public void startUp() throws MalformedURLException, GeneralSecurityException {
		doReturn(createIdentityManager).when(handler).buildCambriaClient(any());
	}

	@Test
	public void testMockCreateUebKeys() throws HttpException, CambriaApiException, IOException {
		Mockito.when(createIdentityManager.createApiKey(Mockito.anyString(), Mockito.anyString()))
				.thenReturn(apiCredential);
		Either<ApiCredential, CambriaErrorResponse> eitherCreateUebKeys = handler
				.createUebKeys(Arrays.asList("Myhost:1234"));

		Mockito.verify(createIdentityManager).setApiCredentials(Mockito.anyString(), Mockito.anyString());

		assertTrue("Unexpected Operational Status", eitherCreateUebKeys.isLeft());

	}

	@Test
	public void testMockCreateUebKeys_FAIL() throws HttpException, CambriaApiException, IOException {
		Mockito.when(createIdentityManager.createApiKey(Mockito.anyString(), Mockito.anyString()))
				.thenThrow(new CambriaApiException("Error Message"));
		Either<ApiCredential, CambriaErrorResponse> eitherCreateUebKeys = handler
				.createUebKeys(Arrays.asList("Myhost:1234"));
		Mockito.verify(createIdentityManager, Mockito.never()).setApiCredentials(Mockito.anyString(),
				Mockito.anyString());
		assertTrue("Unexpected Operational Status", eitherCreateUebKeys.isRight());
		CambriaErrorResponse response = eitherCreateUebKeys.right().value();
		assertEquals("Unexpected Operational Status", CambriaOperationStatus.CONNNECTION_ERROR,
				response.getOperationStatus());
		assertEquals("Unexpected HTTP Code", 500, response.getHttpCode().intValue());
	}

	@Test
	public void testProcessMessageException() throws Exception {
		CambriaHandler testSubject;
		String message = "";
		Integer result;

		// default test
		testSubject = createTestSubject();
		result = Deencapsulation.invoke(testSubject, "processMessageException", new Object[] { message });
	}

	@Test
	public void testCheckPattern() throws Exception {
		CambriaHandler testSubject;
		String patternStr = "";
		String message = "";
		int groupIndex = 0;
		Integer result;

		// default test
		testSubject = createTestSubject();
		result = Deencapsulation.invoke(testSubject, "checkPattern", new Object[] { patternStr, message, groupIndex });
	}

	@Test
	public void testGetTopics() throws Exception {
		CambriaHandler testSubject;
		List<String> hostSet = new LinkedList<>();
		hostSet.add("mock");
		Either<Set<String>, CambriaErrorResponse> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getTopics(hostSet);
	}

	@Test
	public void testProcessError() throws Exception {
		CambriaHandler testSubject;
		Exception e = null;
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();

		e = new Exception("HTTP Status 999");
		result = Deencapsulation.invoke(testSubject, "processError", e);

		e = new Exception("HTTP Status 401");
		result = Deencapsulation.invoke(testSubject, "processError", e);

		e = new Exception("HTTP Status 409");
		result = Deencapsulation.invoke(testSubject, "processError", e);

		e = new Exception("HTTP Status 500");
		result = Deencapsulation.invoke(testSubject, "processError", e);

		e = new Exception("mock", new Throwable(new Throwable("mock")));
		result = Deencapsulation.invoke(testSubject, "processError", e);
	}

	@Test
	public void testWriteErrorToLog() throws Exception {
		CambriaHandler testSubject;
		CambriaErrorResponse cambriaErrorResponse = new CambriaErrorResponse();
		cambriaErrorResponse.setOperationStatus(CambriaOperationStatus.AUTHENTICATION_ERROR);
		String errorMessage = "mock";
		String methodName = "mock";
		String operationDesc = "mock";

		// default test
		testSubject = createTestSubject();
		Deencapsulation.invoke(testSubject, "writeErrorToLog", cambriaErrorResponse, "mock", "mock");
	}

	@Test
	public void testCreateTopic() throws Exception {
		CambriaHandler testSubject;
		Collection<String> hostSet = new LinkedList<>();
		hostSet.add("mock");
		String apiKey = "mock";
		String secretKey = "mock";
		String topicName = "mock";
		int partitionCount = 0;
		int replicationCount = 0;
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.createTopic(hostSet, apiKey, secretKey, topicName, partitionCount, replicationCount);
	}

	@Test
	public void testUnRegisterFromTopic() throws Exception {
		CambriaHandler testSubject;
		Collection<String> hostSet = new LinkedList<>();
		hostSet.add("mock");
		String managerApiKey = "mock";
		String managerSecretKey = "mock";
		String subscriberApiKey = "mock";
		String topicName = "mock";
		CambriaErrorResponse unRegisterFromTopic = null;

		// default test
		testSubject = createTestSubject();
		unRegisterFromTopic = testSubject.unRegisterFromTopic(hostSet, managerApiKey, managerSecretKey,
				subscriberApiKey, SubscriberTypeEnum.CONSUMER, topicName);
	}

	@Test
	public void testRegisterToTopic() throws Exception {
		CambriaHandler testSubject;
		Collection<String> hostSet = new LinkedList<String>();
		hostSet.add("mock");
		String managerApiKey = "mock";
		String managerSecretKey = "mock";
		String subscriberApiKey = "mock";
		SubscriberTypeEnum subscriberTypeEnum = null;
		String topicName = "mock";
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.registerToTopic(hostSet, managerApiKey, managerSecretKey, subscriberApiKey,
				SubscriberTypeEnum.CONSUMER, topicName);
	}

	@Test
	public void testCreateConsumer() throws Exception {
		CambriaHandler testSubject;
		Collection<String> hostSet = new LinkedList<>();
		hostSet.add("mock");
		String topicName = "mock";
		String apiKey = "mock";
		String secretKey = "mock";
		String consumerId = "mock";
		String consumerGroup = "mock";
		int timeoutMS = 0;
		CambriaConsumer result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.createConsumer(hostSet, topicName, apiKey, secretKey, consumerId, consumerGroup,
				timeoutMS);
	}

	@Test
	public void testCloseConsumer() throws Exception {
		CambriaHandler testSubject;
		CambriaConsumer consumer = null;

		// test 1
		testSubject = createTestSubject();
		consumer = null;
		testSubject.closeConsumer(consumer);
	}

	@Test
	public void testFetchFromTopic() throws Exception {
		CambriaHandler testSubject;
		CambriaConsumer topicConsumer = null;
		Either<Iterable<String>, CambriaErrorResponse> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.fetchFromTopic(topicConsumer);
	}

	@Test
	public void testSendNotification() throws Exception {
		CambriaHandler testSubject;
		String topicName = "mock";
		String uebPublicKey = "mock";
		String uebSecretKey = "mock";
		List<String> uebServers = new LinkedList<>();
		uebServers.add("mock");
		INotificationData data = null;
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.sendNotification(topicName, uebPublicKey, uebSecretKey, uebServers, data);
	}

	@Test
	public void testSendNotificationAndClose() throws Exception {
		CambriaHandler testSubject;
		String topicName = "mock";
		String uebPublicKey = "mock";
		String uebSecretKey = "mock";
		List<String> uebServers = new LinkedList<>();
		uebServers.add("mock");
		INotificationData data = null;
		long waitBeforeCloseTimeout = 1;
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.sendNotificationAndClose(topicName, uebPublicKey, uebSecretKey, uebServers, data,
				waitBeforeCloseTimeout);
	}

	@Test
	public void testGetApiKey() throws Exception {
		CambriaHandler testSubject;
		String server = "";
		String apiKey = "";
		CambriaErrorResponse result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getApiKey(server, apiKey);
	}

	@Test
	public void testCreateUebKeys() throws Exception {
		CambriaHandler testSubject;
		List<String> hostSet = null;
		Either<ApiCredential, CambriaErrorResponse> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.createUebKeys(hostSet);
	}

	@Test
	public void testBuildCambriaClient() throws Exception {
		CambriaHandler testSubject;
		AbstractAuthenticatedManagerBuilder<? extends CambriaClient> client = new TopicManagerBuilder()
				.usingHosts("mock").authenticatedBy("mock", "mock");

		// default test
		testSubject = createTestSubject();
		Deencapsulation.invoke(testSubject, "buildCambriaClient", client);
	}

}