summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/feeder/src/test/java/org/onap/datalake/feeder/service/TopicServiceTest.java
blob: eea475017f7d1d4dc4078bff3ac302f11fa6eb56 (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
/*
* ============LICENSE_START=======================================================
* ONAP : DATALAKE
* ================================================================================
* Copyright 2019 China Mobile
*=================================================================================
* 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.datalake.feeder.service;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.when;

import java.io.IOException;
import java.util.*;

import org.elasticsearch.client.IndicesClient;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.client.indices.GetIndexRequest;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.junit.MockitoJUnitRunner;
import org.mockito.stubbing.Answer;
import org.onap.datalake.feeder.config.ApplicationConfiguration;
import org.onap.datalake.feeder.domain.*;
import org.onap.datalake.feeder.dto.TopicConfig;
import org.onap.datalake.feeder.enumeration.DbTypeEnum;
import org.onap.datalake.feeder.repository.DbRepository;
import org.onap.datalake.feeder.repository.TopicNameRepository;
import org.onap.datalake.feeder.repository.TopicRepository;
import org.onap.datalake.feeder.service.db.ElasticsearchService;

/**
 * Test Service for Topic
 * 
 * @author Guobiao Mo
 *
 */
@RunWith(MockitoJUnitRunner.class)
public class TopicServiceTest {

	static String DEFAULT_TOPIC_NAME = "_DL_DEFAULT_";

	@Mock
	private ApplicationConfiguration config;
	
	@Mock
	private TopicRepository topicRepository;

	@Mock
	private ElasticsearchService elasticsearchService;

	@Mock
	private DbService dbService;

	@Mock
	private DbRepository dbRepository;

	@Mock
	private TopicNameRepository topicNameRepository;

	@InjectMocks
	private TopicService topicService;

	@Test(expected = NullPointerException.class)
	public void testGetTopic() throws IOException{
		List<Topic> topics = new ArrayList<>();
		Topic topic = new Topic();
		DbType dbType = new DbType();
		Set<Kafka> kafkas = new HashSet<>();
		Set<Db> dbs = new HashSet<>();
		Db db = new Db();
		db.setName("Elasticsearch");
		dbs.add(db);

		dbType.setId("ES");
		db.setDbType(dbType);

		Kafka kafka = new Kafka();
		kafka.setName("1234");
		kafkas.add(kafka);

		TopicName topicName = new TopicName();
		topicName.setId("1234");

		topic.setTopicName(topicName);
		topic.setKafkas(kafkas);
		topic.setEnabled(true);
		topic.setDbs(dbs);
		topics.add(topic);
		when(topicRepository.findAll()).thenReturn(topics);
		when((ElasticsearchService)dbService.findDbStoreService(db)).thenReturn(new ElasticsearchService(db));
		topicService.findTopics(kafka,topicName.getId());
		topicService.getEnabledEffectiveTopic(kafka,topicName.getId(),true);

	}
	@Test
	public void testGetTopicNull() {
		Topic topic = new Topic();
		TopicName topicName = new TopicName();
		topicName.setId("_DL_DEFAULT_");
		topic.setId(1234);
		topic.setTopicName(topicName);
		Optional<Topic> optional = Optional.of(topic);
		when(topicRepository.findById(0)).thenReturn(optional);
		when(config.getDefaultTopicName()).thenReturn("_DL_DEFAULT_");
		assertEquals(topic,topicService.getTopic(0));
		assertTrue(topicService.isDefaultTopic(topic));
	}

	@Test
	public void testFillTopic(){
		TopicConfig tConfig = new TopicConfig();
		tConfig.setId(1234);
		tConfig.setName("1234");
		tConfig.setLogin("1234");
		tConfig.setPassword("1234");
		tConfig.setEnabled(true);
		tConfig.setSaveRaw(true);
		tConfig.setDataFormat("1234");
		tConfig.setTtl(1234);
		tConfig.setCorrelateClearedMessage(true);
		tConfig.setMessageIdPath("1234");
		tConfig.setAggregateArrayPath("1234");
		tConfig.setFlattenArrayPath("1234");
		List<Integer> sinkdbs = new ArrayList<>();
		sinkdbs.add(1234);
		tConfig.setSinkdbs(sinkdbs);

		Db db = new Db();
		db.setId(1234);

		TopicName topicName = new TopicName();
		topicName.setId("1234");

		Optional<TopicName> optional = Optional.of(topicName);
		when(dbRepository.findById(1234)).thenReturn(Optional.of(db));
		when(topicNameRepository.findById(tConfig.getName())).thenReturn(optional);

		topicService.fillTopicConfiguration(tConfig);
	}

/*
	@Test
	public void testGetEffectiveTopic() throws IOException {
		String name = "a";
		Topic topic = new Topic(name);
		topic.setEnabled(true);
		Set<Db> dbSet = new HashSet<>();
		dbSet.add(new Db("Elasticsearch"));
		topic.setDbs(dbSet);

		when(config.getDefaultTopicName()).thenReturn(DEFAULT_TOPIC_NAME);
		when(topicRepository.findById(DEFAULT_TOPIC_NAME)).thenReturn(Optional.of(topic));
		when(topicRepository.findById(name)).thenReturn(Optional.of(topic));
		when(topicRepository.findById(null)).thenReturn(Optional.empty());

		assertEquals(topicService.getEffectiveTopic(name), topicService.getEffectiveTopic(name, false));

		assertNotNull(topicService.getEffectiveTopic(null));

		topicService.getEffectiveTopic(name, true);
	}
*/
}