[manager] collectorApi unit test case and example (#2306)

Co-authored-by: tomsun28 <tomsun28@outlook.com>
This commit is contained in:
jiangsh
2024-07-20 14:46:16 +08:00
committed by GitHub
co-authored by tomsun28
parent 061423d301
commit be0de49646
3 changed files with 284 additions and 0 deletions
@@ -0,0 +1,126 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.hertzbeat.manager.controller;
import lombok.extern.slf4j.Slf4j;
import org.apache.hertzbeat.common.constants.CommonConstants;
import org.apache.hertzbeat.common.util.JsonUtil;
import org.apache.hertzbeat.manager.scheduler.netty.ManageServer;
import org.apache.hertzbeat.manager.service.impl.CollectorServiceImpl;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import java.util.ArrayList;
import java.util.List;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
/**
* Test case for {@link CollectorController}
*/
@ExtendWith(MockitoExtension.class)
@Slf4j
public class CollectorControllerTest {
private MockMvc mockMvc;
@InjectMocks
private CollectorController collectorController;
@Mock
private CollectorServiceImpl collectorService;
@Mock
private ManageServer manageServer;
@BeforeEach
void setUp() {
this.mockMvc = MockMvcBuilders.standaloneSetup(collectorController).build();
}
@Test
public void getCollectors() throws Exception {
this.mockMvc.perform(MockMvcRequestBuilders.get(
"/api/collector?name={name}&pageIndex={pageIndex}&pageSize={pageSize}",
"tom", 0, 10))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value((int) CommonConstants.SUCCESS_CODE))
.andReturn();
}
@Test
public void onlineCollector() throws Exception {
List<String> collectors = new ArrayList<>();
collectors.add("demo-collector");
this.mockMvc.perform(MockMvcRequestBuilders.put(
"/api/collector/online")
.contentType(MediaType.APPLICATION_JSON)
.content(JsonUtil.toJson(collectors)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value((int) CommonConstants.SUCCESS_CODE))
.andReturn();
}
@Test
public void offlineCollector() throws Exception {
List<String> collectors = new ArrayList<>();
collectors.add("demo-collector");
this.mockMvc.perform(MockMvcRequestBuilders.put(
"/api/collector/offline")
.contentType(MediaType.APPLICATION_JSON)
.content(JsonUtil.toJson(collectors)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value((int) CommonConstants.SUCCESS_CODE))
.andReturn();
}
@Test
public void deleteCollector() throws Exception {
List<String> collectors = new ArrayList<>();
collectors.add("demo-collector");
this.mockMvc.perform(MockMvcRequestBuilders.delete(
"/api/collector")
.contentType(MediaType.APPLICATION_JSON)
.content(JsonUtil.toJson(collectors)))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value((int) CommonConstants.SUCCESS_CODE))
.andReturn();
}
@Test
public void generateCollectorDeployInfo() throws Exception {
this.mockMvc.perform(MockMvcRequestBuilders.post(
"/api/collector/generate/{collector}",
"demo-collector"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.code").value((int) CommonConstants.SUCCESS_CODE))
.andReturn();
}
}
@@ -0,0 +1,72 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.hertzbeat.manager.dao;
import org.apache.hertzbeat.common.entity.manager.Collector;
import org.apache.hertzbeat.manager.AbstractSpringIntegrationTest;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* Test case for {@link CollectorDao}
*/
@Transactional
public class CollectorDaoTest extends AbstractSpringIntegrationTest {
@Resource
private CollectorDao collectorDao;
@BeforeEach
void setUp() {
Collector creator = Collector.builder()
.id(1L)
.name("test")
.mode("public")
.status((byte) 1)
.ip("192.34.5.43")
.creator("tom")
.build();
creator = collectorDao.save(creator);
assertNotNull(creator);
}
@AfterEach
public void deleteAll() {
collectorDao.deleteAll();
}
@Test
public void deleteCollectorByName() {
collectorDao.deleteCollectorByName("test");
}
@Test
public void findCollectorByName() {
assertTrue(collectorDao.findCollectorByName("test").isPresent());
}
}
@@ -0,0 +1,86 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.hertzbeat.manager.service;
import org.apache.hertzbeat.common.entity.manager.Collector;
import org.apache.hertzbeat.manager.dao.CollectorDao;
import org.apache.hertzbeat.manager.dao.CollectorMonitorBindDao;
import org.apache.hertzbeat.manager.scheduler.ConsistentHash;
import org.apache.hertzbeat.manager.scheduler.netty.ManageServer;
import org.apache.hertzbeat.manager.service.impl.CollectorServiceImpl;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Spy;
import org.mockito.junit.jupiter.MockitoExtension;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.jpa.domain.Specification;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
/**
* Test case for {@link CollectorService}
*/
@ExtendWith(MockitoExtension.class)
public class CollectorServiceTest {
@Spy
@InjectMocks
private CollectorServiceImpl collectorService;
@Mock
private CollectorDao collectorDao;
@Mock
private ConsistentHash consistentHash;
@Mock
private CollectorMonitorBindDao collectorMonitorBindDao;
@Mock
private ManageServer manageServer;
@Test
public void getCollectors() {
Specification<Collector> specification = mock(Specification.class);
when(collectorDao.findAll(specification, PageRequest.of(1, 1))).thenReturn(Page.empty());
assertDoesNotThrow(() -> collectorService.getCollectors(specification, PageRequest.of(1, 1)));
}
@Test
public void deleteRegisteredCollector() {
List<String> collectors = new ArrayList<>();
collectors.add("test");
collectorService.deleteRegisteredCollector(collectors);
}
@Test
public void hasCollector() {
collectorService.hasCollector("test");
}
}