blob: dfe7fd03ee98c3eb40a068f6a64c9de30b497edf [file] [log] [blame]
/**
* 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.
*/
package com.manager.pulsar.service;
import com.google.common.collect.Maps;
import com.manager.pulsar.utils.HttpUtil;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import org.powermock.modules.junit4.PowerMockRunnerDelegate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.Map;
@RunWith(PowerMockRunner.class)
@PowerMockRunnerDelegate(SpringRunner.class)
@PowerMockIgnore( {"javax.management.*", "javax.net.ssl.*"})
@PrepareForTest(HttpUtil.class)
@SpringBootTest
public class TopicsServiceImplTest {
@Autowired
private TopicsService topicsService;
private final String topics = "[" +
"\"persistent://public/default/test789\"," +
"\"persistent://public/default/test900-partition-0\"," +
"\"persistent://public/default/test900-partition-1\"," +
"\"persistent://public/default/test900-partition-2\"]";
private final String partitionedTopics = "[\"persistent://public/default/test900\"]";
@Test
public void topicsServiceImplTest() {
PowerMockito.mockStatic(HttpUtil.class);
Map<String, String> header = Maps.newHashMap();
header.put("Content-Type", "application/json");
PowerMockito.when(HttpUtil.doGet("http://localhost:8080/admin/v2/persistent/public/default", header))
.thenReturn(topics);
PowerMockito.when(HttpUtil.doGet(
"http://localhost:8080/admin/v2/persistent/public/default/partitioned", header))
.thenReturn(partitionedTopics);
PowerMockito.when(HttpUtil.doGet(
"http://localhost:8080/admin/v2/persistent/public/default/test900/partitions", header))
.thenReturn("{\"partitions\":3}");
Map<String, Object> topicsMap = topicsService.getTopicsList(
1, 1, "public", "default", "http://localhost:8080");
Assert.assertEquals(topicsMap.get("total"), 2);
Assert.assertFalse((Boolean) topicsMap.get("isPage"));
Assert.assertEquals(topicsMap.get("topics").toString(),
"[{partitions=0, topic=test789, persistent=persistent}, {partitions=3, topic=test900, persistent=persistent}]");
}
}