mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 11:17:54 +08:00
[Improvement-5807][Dao] Use h2 in UT (#6500)
* Use H2 in UT * change scope * Change profile name to h2 * Add datasource-h2.properties, datasource-postgresql.properties * Fix UT * Resolve conflict * Remove startDatabase
This commit is contained in:
parent
d27c6ea8f0
commit
0afb780718
@ -27,6 +27,7 @@ import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
import java.util.Objects;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -38,6 +39,11 @@ public class AlertPluginManagerTest {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(AlertPluginManagerTest.class);
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLoadPlugins() {
|
||||
logger.info("begin test AlertPluginManagerTest");
|
||||
|
@ -50,6 +50,7 @@ import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
@ -59,8 +60,15 @@ import com.google.common.collect.ImmutableList;
|
||||
*/
|
||||
public class EmailAlertPluginTest {
|
||||
|
||||
private AlertDao alertDao = DaoFactory.getDaoInstance(AlertDao.class);
|
||||
private PluginDao pluginDao = DaoFactory.getDaoInstance(PluginDao.class);
|
||||
private AlertDao alertDao;
|
||||
private PluginDao pluginDao;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
alertDao = DaoFactory.getDaoInstance(AlertDao.class);
|
||||
pluginDao = DaoFactory.getDaoInstance(PluginDao.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRunSend() {
|
||||
|
@ -152,7 +152,7 @@ public class AccessTokenController extends BaseController {
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
@ApiException(DELETE_ACCESS_TOKEN_ERROR)
|
||||
@AccessLogAnnotation(ignoreRequestArgs = "loginUser")
|
||||
public Result delAccessTokenById(@RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
||||
public Result delAccessTokenById(@ApiIgnore @RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
||||
@PathVariable(value = "id") int id) {
|
||||
Map<String, Object> result = accessTokenService.delAccessTokenById(loginUser, id);
|
||||
return returnDataList(result);
|
||||
@ -174,7 +174,7 @@ public class AccessTokenController extends BaseController {
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
@ApiException(UPDATE_ACCESS_TOKEN_ERROR)
|
||||
@AccessLogAnnotation(ignoreRequestArgs = "loginUser")
|
||||
public Result updateToken(@RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
||||
public Result updateToken(@ApiIgnore @RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
||||
@PathVariable(value = "id") int id,
|
||||
@RequestParam(value = "userId") int userId,
|
||||
@RequestParam(value = "expireTime") String expireTime,
|
||||
|
@ -75,7 +75,7 @@ import springfox.documentation.annotations.ApiIgnore;
|
||||
*/
|
||||
@Api(tags = "PROCESS_INSTANCE_TAG")
|
||||
@RestController
|
||||
@RequestMapping("projects/{projectCode}/process-instances")
|
||||
@RequestMapping("/projects/{projectCode}/process-instances")
|
||||
public class ProcessInstanceController extends BaseController {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(ProcessInstanceController.class);
|
||||
|
@ -20,8 +20,9 @@ package org.apache.dolphinscheduler.api.controller;
|
||||
import org.apache.dolphinscheduler.api.ApiApplicationServer;
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.service.SessionService;
|
||||
import org.apache.dolphinscheduler.api.service.UsersService;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.common.enums.ProfileType;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
@ -36,6 +37,7 @@ import org.junit.Before;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.test.web.servlet.MockMvc;
|
||||
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
|
||||
@ -44,6 +46,7 @@ import org.springframework.web.context.WebApplicationContext;
|
||||
/**
|
||||
* abstract controller test
|
||||
*/
|
||||
@ActiveProfiles(value = {ProfileType.H2})
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = ApiApplicationServer.class)
|
||||
public class AbstractControllerTest {
|
||||
@ -58,6 +61,9 @@ public class AbstractControllerTest {
|
||||
@Autowired
|
||||
private SessionService sessionService;
|
||||
|
||||
@Autowired
|
||||
private UsersService usersService;
|
||||
|
||||
protected User user;
|
||||
|
||||
protected String sessionId;
|
||||
@ -66,7 +72,8 @@ public class AbstractControllerTest {
|
||||
public void setUp() {
|
||||
mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
|
||||
|
||||
createSession();
|
||||
user = usersService.queryUser(1);
|
||||
createSession(user);
|
||||
}
|
||||
|
||||
@After
|
||||
@ -74,11 +81,7 @@ public class AbstractControllerTest {
|
||||
sessionService.signOut("127.0.0.1", user);
|
||||
}
|
||||
|
||||
private void createSession() {
|
||||
|
||||
User loginUser = new User();
|
||||
loginUser.setId(1);
|
||||
loginUser.setUserType(UserType.GENERAL_USER);
|
||||
private void createSession(User loginUser) {
|
||||
|
||||
user = loginUser;
|
||||
|
||||
|
@ -17,8 +17,10 @@
|
||||
|
||||
package org.apache.dolphinscheduler.api.controller;
|
||||
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
@ -45,27 +47,27 @@ public class AccessTokenControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testCreateToken() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","4");
|
||||
paramsMap.add("expireTime","2019-12-18 00:00:00");
|
||||
paramsMap.add("token","607f5aeaaa2093dbdff5d5522ce00510");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-token/create")
|
||||
paramsMap.add("userId", "4");
|
||||
paramsMap.add("expireTime", "2019-12-18 00:00:00");
|
||||
paramsMap.add("token", "607f5aeaaa2093dbdff5d5522ce00510");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-tokens")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExceptionHandler() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","-1");
|
||||
paramsMap.add("expireTime","2019-12-18 00:00:00");
|
||||
paramsMap.add("token","507f5aeaaa2093dbdff5d5522ce00510");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-token/create")
|
||||
paramsMap.add("userId", "-1");
|
||||
paramsMap.add("expireTime", "2019-12-18 00:00:00");
|
||||
paramsMap.add("token", "507f5aeaaa2093dbdff5d5522ce00510");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-tokens")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -79,66 +81,64 @@ public class AccessTokenControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testGenerateToken() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","4");
|
||||
paramsMap.add("expireTime","2019-12-28 00:00:00");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-token/generate")
|
||||
.header("sessionId", "5925a115-1691-47e0-9c46-4c7da03f6bbd")
|
||||
paramsMap.add("userId", "4");
|
||||
paramsMap.add("expireTime", "2019-12-28 00:00:00");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-tokens/generate")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryAccessTokenList() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("pageNo","1");
|
||||
paramsMap.add("pageSize","20");
|
||||
paramsMap.add("searchVal","");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/access-token/list-paging")
|
||||
.header("sessionId", "5925a115-1691-47e0-9c46-4c7da03f6bbd")
|
||||
paramsMap.add("pageNo", "1");
|
||||
paramsMap.add("pageSize", "20");
|
||||
paramsMap.add("searchVal", "");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/access-tokens")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDelAccessTokenById() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","13");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-token/delete")
|
||||
.header("sessionId", "5925a115-1691-47e0-9c46-4c7da03f6bbd")
|
||||
.params(paramsMap))
|
||||
testCreateToken();
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/access-tokens/1")
|
||||
.header("sessionId", sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateToken() throws Exception {
|
||||
testCreateToken();
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","12");
|
||||
paramsMap.add("userId","4");
|
||||
paramsMap.add("expireTime","2019-12-20 00:00:00");
|
||||
paramsMap.add("token","cxctoken123update");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/access-token/update")
|
||||
.header("sessionId", "5925a115-1691-47e0-9c46-4c7da03f6bbd")
|
||||
paramsMap.add("userId", "4");
|
||||
paramsMap.add("expireTime", "2019-12-20 00:00:00");
|
||||
paramsMap.add("token", "cxctoken123update");
|
||||
MvcResult mvcResult = mockMvc.perform(put("/access-tokens/1")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
|
@ -17,8 +17,10 @@
|
||||
|
||||
package org.apache.dolphinscheduler.api.controller;
|
||||
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
@ -44,131 +46,129 @@ public class AlertGroupControllerTest extends AbstractControllerTest {
|
||||
private static final Logger logger = LoggerFactory.getLogger(AlertGroupController.class);
|
||||
|
||||
@Test
|
||||
public void testCreateAlertgroup() throws Exception {
|
||||
public void test010CreateAlertgroup() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("groupName","cxc test group name");
|
||||
paramsMap.add("groupName", "cxc test group name");
|
||||
paramsMap.add("groupType", AlertType.EMAIL.toString());
|
||||
paramsMap.add("description","cxc junit 测试告警描述");
|
||||
paramsMap.add("description", "cxc junit 测试告警描述");
|
||||
paramsMap.add("alertInstanceIds", "");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-group/create")
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-groups")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testList() throws Exception {
|
||||
public void test020List() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-group/list")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-groups/list")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testListPaging() throws Exception {
|
||||
public void test030ListPaging() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("pageNo","1");
|
||||
paramsMap.add("pageNo", "1");
|
||||
paramsMap.add("searchVal", AlertType.EMAIL.toString());
|
||||
paramsMap.add("pageSize","1");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-group/list-paging")
|
||||
paramsMap.add("pageSize", "1");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-groups")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryAlertGroupById() throws Exception {
|
||||
public void test040QueryAlertGroupById() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","22");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-group/query")
|
||||
paramsMap.add("id", "1");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-groups/query")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateAlertgroup() throws Exception {
|
||||
public void test050UpdateAlertgroup() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","22");
|
||||
paramsMap.add("groupName", "cxc test group name");
|
||||
paramsMap.add("groupType",AlertType.EMAIL.toString());
|
||||
paramsMap.add("description","update alter group");
|
||||
paramsMap.add("groupType", AlertType.EMAIL.toString());
|
||||
paramsMap.add("description", "update alter group");
|
||||
paramsMap.add("alertInstanceIds", "");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-group/update")
|
||||
MvcResult mvcResult = mockMvc.perform(put("/alert-groups/1")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.ALERT_GROUP_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyGroupName() throws Exception {
|
||||
public void test060VerifyGroupName() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("groupName","cxc test group name");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-group/verify-group-name")
|
||||
paramsMap.add("groupName", "cxc test group name");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-groups/verify-name")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyGroupNameNotExit() throws Exception {
|
||||
public void test070VerifyGroupNameNotExit() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("groupName","cxc test group name");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-group/verify-group-name")
|
||||
paramsMap.add("groupName", "cxc test group name xx");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/alert-groups/verify-name")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDelAlertgroupById() throws Exception {
|
||||
public void test080DelAlertgroupById() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","22");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/alert-group/delete")
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/alert-groups/1")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
}
|
||||
|
@ -47,11 +47,11 @@ public class DataAnalysisControllerTest extends AbstractControllerTest {
|
||||
private static Logger logger = LoggerFactory.getLogger(DataAnalysisControllerTest.class);
|
||||
|
||||
@MockBean
|
||||
ProjectMapper projectMapper;
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
@Test
|
||||
public void testCountTaskState() throws Exception {
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.any())).thenReturn(getProject("test"));
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.anyLong())).thenReturn(getProject("test"));
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("startDate","2019-12-01 00:00:00");
|
||||
@ -72,7 +72,7 @@ public class DataAnalysisControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testCountProcessInstanceState() throws Exception {
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.any())).thenReturn(getProject("test"));
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.anyLong())).thenReturn(getProject("test"));
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("startDate","2019-12-01 00:00:00");
|
||||
@ -92,7 +92,7 @@ public class DataAnalysisControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testCountDefinitionByUser() throws Exception {
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.any())).thenReturn(getProject("test"));
|
||||
PowerMockito.when(projectMapper.queryByCode(Mockito.anyLong())).thenReturn(getProject("test"));
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("projectId","16");
|
||||
|
@ -133,7 +133,7 @@ public class DataSourceControllerTest extends AbstractControllerTest {
|
||||
paramsMap.add("searchVal","mysql");
|
||||
paramsMap.add("pageNo","1");
|
||||
paramsMap.add("pageSize","1");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/datasources/list-paging")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/datasources")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
|
@ -22,16 +22,25 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
import org.apache.dolphinscheduler.api.enums.ExecuteType;
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.service.ExecutorService;
|
||||
import org.apache.dolphinscheduler.api.utils.Result;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.FailureStrategy;
|
||||
import org.apache.dolphinscheduler.common.enums.WarningType;
|
||||
import org.apache.dolphinscheduler.common.utils.JSONUtils;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mockito.Mockito;
|
||||
import org.powermock.api.mockito.PowerMockito;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.test.web.servlet.MvcResult;
|
||||
import org.springframework.util.LinkedMultiValueMap;
|
||||
@ -44,6 +53,9 @@ public class ExecutorControllerTest extends AbstractControllerTest {
|
||||
|
||||
private static Logger logger = LoggerFactory.getLogger(ExecutorControllerTest.class);
|
||||
|
||||
@MockBean
|
||||
private ExecutorService executorService;
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void testStartProcessInstance() throws Exception {
|
||||
@ -94,10 +106,13 @@ public class ExecutorControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testStartCheckProcessDefinition() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(executorService.startCheckByProcessDefinedCode(Mockito.anyLong())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/projects/{projectName}/executors/start-check", "cxc_1113")
|
||||
MvcResult mvcResult = mockMvc.perform(post("/projects/1/executors/start-check")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processDefinitionId", "40"))
|
||||
.param("processDefinitionCode", "40"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
@ -44,8 +44,8 @@ public class LoginControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testLogin() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName","cxc");
|
||||
paramsMap.add("userPassword","123456");
|
||||
paramsMap.add("userName", "admin");
|
||||
paramsMap.add("userPassword", "dolphinscheduler123");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/login")
|
||||
.params(paramsMap))
|
||||
|
@ -42,7 +42,7 @@ public class MonitorControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testListMaster() throws Exception {
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/master/list")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/masters")
|
||||
.header(SESSION_ID, sessionId)
|
||||
/* .param("type", ResourceType.FILE.name())*/)
|
||||
.andExpect(status().isOk())
|
||||
@ -59,7 +59,7 @@ public class MonitorControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testListWorker() throws Exception {
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/worker/list")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/workers")
|
||||
.header(SESSION_ID, sessionId)
|
||||
/* .param("type", ResourceType.FILE.name())*/)
|
||||
.andExpect(status().isOk())
|
||||
@ -75,7 +75,7 @@ public class MonitorControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQueryDatabaseState() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/database")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/databases")
|
||||
.header(SESSION_ID, sessionId)
|
||||
/* .param("type", ResourceType.FILE.name())*/)
|
||||
.andExpect(status().isOk())
|
||||
@ -91,7 +91,7 @@ public class MonitorControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQueryZookeeperState() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/zookeeper/list")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/monitor/zookeepers")
|
||||
.header(SESSION_ID, sessionId)
|
||||
/* .param("type", ResourceType.FILE.name())*/)
|
||||
.andExpect(status().isOk())
|
||||
|
@ -17,18 +17,28 @@
|
||||
|
||||
package org.apache.dolphinscheduler.api.controller;
|
||||
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.service.ProcessInstanceService;
|
||||
import org.apache.dolphinscheduler.api.utils.Result;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.ExecutionStatus;
|
||||
import org.apache.dolphinscheduler.common.utils.JSONUtils;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.mockito.Mockito;
|
||||
import org.powermock.api.mockito.PowerMockito;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.test.web.servlet.MvcResult;
|
||||
import org.springframework.util.LinkedMultiValueMap;
|
||||
@ -39,8 +49,18 @@ import org.springframework.util.MultiValueMap;
|
||||
*/
|
||||
public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@MockBean
|
||||
private ProcessInstanceService processInstanceService;
|
||||
|
||||
@Test
|
||||
public void testQueryProcessInstanceList() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(processInstanceService
|
||||
.queryProcessInstanceList(Mockito.any(), Mockito.anyLong(), Mockito.anyLong(), Mockito.any(),
|
||||
Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("processDefineCode", "91");
|
||||
paramsMap.add("searchVal", "cxc");
|
||||
@ -51,12 +71,12 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
paramsMap.add("pageNo", "2");
|
||||
paramsMap.add("pageSize", "2");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/list-paging", "cxc_1113")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/1113/process-instances")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
@ -64,12 +84,16 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQueryTaskListByProcessId() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/task-list-by-process-id", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceId", "1203"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.PROJECT_NOT_FOUNT);
|
||||
PowerMockito.when(processInstanceService.queryTaskListByProcessId(Mockito.any(), Mockito.anyLong(), Mockito.any()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/process-instances/{id}/tasks", "1113", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -78,25 +102,33 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testUpdateProcessInstance() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(processInstanceService
|
||||
.updateProcessInstance(Mockito.any(), Mockito.anyLong(), Mockito.anyInt(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyBoolean(), Mockito.anyString(),
|
||||
Mockito.anyString(), Mockito.anyInt(), Mockito.anyString())).thenReturn(mockResult);
|
||||
|
||||
String json = "[{\"name\":\"\",\"pre_task_code\":0,\"pre_task_version\":0,\"post_task_code\":123456789,\"post_task_version\":1,"
|
||||
+ "\"condition_type\":0,\"condition_params\":\"{}\"},{\"name\":\"\",\"pre_task_code\":123456789,\"pre_task_version\":1,"
|
||||
+ "\"post_task_code\":123451234,\"post_task_version\":1,\"condition_type\":0,\"condition_params\":\"{}\"}]";
|
||||
+ "\"condition_type\":0,\"condition_params\":\"{}\"},{\"name\":\"\",\"pre_task_code\":123456789,\"pre_task_version\":1,"
|
||||
+ "\"post_task_code\":123451234,\"post_task_version\":1,\"condition_type\":0,\"condition_params\":\"{}\"}]";
|
||||
|
||||
String locations = "{\"tasks-36196\":{\"name\":\"ssh_test1\",\"targetarr\":\"\",\"x\":141,\"y\":70}}";
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("taskRelationJson", json);
|
||||
paramsMap.add("taskDefinitionJson", "");
|
||||
paramsMap.add("processInstanceId", "91");
|
||||
paramsMap.add("scheduleTime", "2019-12-15 00:00:00");
|
||||
paramsMap.add("syncDefine", "false");
|
||||
paramsMap.add("locations", locations);
|
||||
paramsMap.add("tenantCode", "123");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/projects/{projectCode}/instance/update", "cxc_1113")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
MvcResult mvcResult = mockMvc.perform(put("/projects/{projectCode}/process-instances/{id}", "1113", "123")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
@ -104,12 +136,14 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQueryProcessInstanceById() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/select-by-id", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceId", "1203"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(processInstanceService.queryProcessInstanceById(Mockito.any(), Mockito.anyLong(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/process-instances/{id}", "1113", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -118,12 +152,16 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQuerySubProcessInstanceByTaskId() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/select-sub-process", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("taskId", "1203"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.TASK_INSTANCE_NOT_EXISTS);
|
||||
PowerMockito.when(processInstanceService.querySubProcessInstanceByTaskId(Mockito.any(), Mockito.anyLong(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/process-instances/query-sub-by-parent", "1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("taskId", "1203"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -132,12 +170,16 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testQueryParentInstanceBySubId() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/select-parent-process", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("subId", "1204"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.PROCESS_INSTANCE_NOT_SUB_PROCESS_INSTANCE);
|
||||
PowerMockito.when(processInstanceService.queryParentInstanceBySubId(Mockito.any(), Mockito.anyLong(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/process-instances/query-parent-by-sub", "1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("subId", "1204"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -146,12 +188,16 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testViewVariables() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/view-variables", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceId", "1204"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(processInstanceService.viewVariables(Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/process-instances/{id}/view-variables", "1113", "123")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceId", "1204"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -160,12 +206,15 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testDeleteProcessInstanceById() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/delete", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceId", "1204"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(processInstanceService.deleteProcessInstanceById(Mockito.any(), Mockito.anyLong(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/projects/{projectCode}/process-instances/{id}", "1113", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
@ -174,12 +223,16 @@ public class ProcessInstanceControllerTest extends AbstractControllerTest {
|
||||
|
||||
@Test
|
||||
public void testBatchDeleteProcessInstanceByIds() throws Exception {
|
||||
MvcResult mvcResult = mockMvc.perform(get("/projects/{projectCode}/instance/batch-delete", "cxc_1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceIds", "1205,1206"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.PROCESS_INSTANCE_NOT_EXIST);
|
||||
|
||||
PowerMockito.when(processInstanceService.deleteProcessInstanceById(Mockito.any(), Mockito.anyLong(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
MvcResult mvcResult = mockMvc.perform(post("/projects/{projectCode}/process-instances/batch-delete", "1113")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("processInstanceIds", "1205,1206"))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertNotNull(result);
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.api.controller;
|
||||
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put;
|
||||
@ -24,15 +25,25 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.service.ResourcesService;
|
||||
import org.apache.dolphinscheduler.api.service.UdfFuncService;
|
||||
import org.apache.dolphinscheduler.api.utils.Result;
|
||||
import org.apache.dolphinscheduler.spi.enums.ResourceType;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.UdfType;
|
||||
import org.apache.dolphinscheduler.common.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.enums.ResourceType;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.mockito.Mockito;
|
||||
import org.powermock.api.mockito.PowerMockito;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.test.web.servlet.MvcResult;
|
||||
import org.springframework.util.LinkedMultiValueMap;
|
||||
@ -45,8 +56,17 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
private static Logger logger = LoggerFactory.getLogger(ResourcesControllerTest.class);
|
||||
|
||||
@MockBean
|
||||
private ResourcesService resourcesService;
|
||||
|
||||
@MockBean
|
||||
private UdfFuncService udfFuncService;
|
||||
|
||||
@Test
|
||||
public void testQuerytResourceList() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(resourcesService.queryResourceList(Mockito.any(), Mockito.any())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/list")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -57,19 +77,26 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryResourceListPaging() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(resourcesService.queryResourceListPaging(
|
||||
Mockito.any(), Mockito.anyInt(), Mockito.any(), Mockito.anyString(), Mockito.anyInt(), Mockito.anyInt()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("type", String.valueOf(ResourceType.FILE));
|
||||
paramsMap.add("id", "123");
|
||||
paramsMap.add("pageNo", "1");
|
||||
paramsMap.add("searchVal", "test");
|
||||
paramsMap.add("pageSize", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/list-paging")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -78,16 +105,19 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyResourceName() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.TENANT_NOT_EXIST.getCode());
|
||||
PowerMockito.when(resourcesService.verifyResourceName(Mockito.anyString(), Mockito.any(), Mockito.any())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("name","list_resources_1.sh");
|
||||
paramsMap.add("type","FILE");
|
||||
paramsMap.add("fullName", "list_resources_1.sh");
|
||||
paramsMap.add("type", "FILE");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/verify-name")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -98,19 +128,21 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testViewResource() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.HDFS_NOT_STARTUP.getCode());
|
||||
PowerMockito.when(resourcesService.readResource(Mockito.anyInt(), Mockito.anyInt(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","5");
|
||||
paramsMap.add("skipLineNum","2");
|
||||
paramsMap.add("limit","100");
|
||||
paramsMap.add("skipLineNum", "2");
|
||||
paramsMap.add("limit", "100");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/view")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/{id}/view", "5")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -119,19 +151,26 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.HDFS_NOT_STARTUP.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOnlineCreateResource() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.TENANT_NOT_EXIST.getCode());
|
||||
PowerMockito.when(resourcesService
|
||||
.onlineCreateResource(Mockito.any(), Mockito.any(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyInt(), Mockito.anyString()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("type", String.valueOf(ResourceType.FILE));
|
||||
paramsMap.add("fileName","test_file_1");
|
||||
paramsMap.add("suffix","sh");
|
||||
paramsMap.add("description","test");
|
||||
paramsMap.add("content","echo 1111");
|
||||
paramsMap.add("fileName", "test_file_1");
|
||||
paramsMap.add("suffix", "sh");
|
||||
paramsMap.add("description", "test");
|
||||
paramsMap.add("content", "echo 1111");
|
||||
paramsMap.add("pid", "123");
|
||||
paramsMap.add("currentDir", "/xx");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/resources/online-create")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -142,16 +181,19 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateResourceContent() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.TENANT_NOT_EXIST.getCode());
|
||||
PowerMockito.when(resourcesService.updateResourceContent(Mockito.anyInt(), Mockito.anyString())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id", "1");
|
||||
paramsMap.add("content","echo test_1111");
|
||||
paramsMap.add("content", "echo test_1111");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(put("/resources/1/update-content")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -162,31 +204,30 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDownloadResource() throws Exception {
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id", "5");
|
||||
PowerMockito.when(resourcesService.downloadResource(Mockito.anyInt())).thenReturn(null);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/{id}/download",5)
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/{id}/download", 5)
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().is(HttpStatus.BAD_REQUEST.value()))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
Assert.assertNotNull(mvcResult);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateUdfFunc() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.TENANT_NOT_EXIST.getCode());
|
||||
PowerMockito.when(udfFuncService
|
||||
.createUdfFunction(Mockito.any(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.any(), Mockito.anyInt()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("type", String.valueOf(UdfType.HIVE));
|
||||
@ -197,7 +238,7 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
paramsMap.add("description", "description");
|
||||
paramsMap.add("resourceId", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/resources/udf-func/create")
|
||||
MvcResult mvcResult = mockMvc.perform(post("/resources/{resourceId}/udf-func", "123")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
@ -206,31 +247,37 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testViewUIUdfFunction() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.TENANT_NOT_EXIST);
|
||||
PowerMockito.when(udfFuncService
|
||||
.queryUdfFuncDetail(Mockito.anyInt()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/udf-func/update-ui")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/{id}/udf-func", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateUdfFunc() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.TENANT_NOT_EXIST);
|
||||
PowerMockito.when(udfFuncService
|
||||
.updateUdfFunc(Mockito.anyInt(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.anyString(), Mockito.any(), Mockito.anyInt()))
|
||||
.thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id", "1");
|
||||
@ -242,7 +289,7 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
paramsMap.add("description", "description");
|
||||
paramsMap.add("resourceId", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/resources/udf-func/update")
|
||||
MvcResult mvcResult = mockMvc.perform(put("/resources/{resourceId}/udf-func/{id}", "123", "456")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -251,18 +298,22 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.TENANT_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryUdfFuncList() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(udfFuncService.queryUdfFuncListPaging(Mockito.any(), Mockito.anyString(), Mockito.anyInt(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("pageNo", "1");
|
||||
paramsMap.add("searchVal", "udf");
|
||||
paramsMap.add("pageSize", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/udf-func/list-paging")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/udf-func")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -271,12 +322,16 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryResourceList() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(udfFuncService.queryUdfFuncList(Mockito.any(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("type", String.valueOf(UdfType.HIVE));
|
||||
|
||||
@ -289,12 +344,16 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyUdfFuncName() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(udfFuncService.verifyUdfFuncByName(Mockito.anyString())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("name", "test");
|
||||
|
||||
@ -307,12 +366,16 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAuthorizedFile() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(resourcesService.authorizedFile(Mockito.any(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId", "2");
|
||||
|
||||
@ -325,30 +388,16 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUnauthorizedFile() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId", "2");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/unauth-file")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAuthorizedUDFFunction() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(resourcesService.authorizedUDFFunction(Mockito.any(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId", "2");
|
||||
|
||||
@ -361,12 +410,16 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUnauthUDFFunc() throws Exception {
|
||||
Map<String, Object> mockResult = new HashMap<>();
|
||||
mockResult.put(Constants.STATUS, Status.SUCCESS);
|
||||
PowerMockito.when(resourcesService.unauthorizedUDFFunction(Mockito.any(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId", "2");
|
||||
|
||||
@ -379,41 +432,43 @@ public class ResourcesControllerTest extends AbstractControllerTest {
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteUdfFunc() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id", "1");
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(udfFuncService.delete(Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/udf-func/delete")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/resources/udf-func/{id}", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteResource() throws Exception {
|
||||
Result mockResult = new Result<>();
|
||||
mockResult.setCode(Status.SUCCESS.getCode());
|
||||
PowerMockito.when(resourcesService.delete(Mockito.any(), Mockito.anyInt())).thenReturn(mockResult);
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/resources/delete")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.param("id", "2"))
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/resources/{id}", "123")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
}
|
||||
|
@ -30,6 +30,7 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@ -48,35 +49,35 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testCreateUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName","user_test");
|
||||
paramsMap.add("userPassword","123456qwe?");
|
||||
paramsMap.add("tenantId","9");
|
||||
paramsMap.add("queue","1");
|
||||
paramsMap.add("email","12343534@qq.com");
|
||||
paramsMap.add("phone","15800000000");
|
||||
paramsMap.add("userName", "user_test");
|
||||
paramsMap.add("userPassword", "123456qwe?");
|
||||
paramsMap.add("tenantId", "109");
|
||||
paramsMap.add("queue", "1");
|
||||
paramsMap.add("email", "12343534@qq.com");
|
||||
paramsMap.add("phone", "15800000000");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/create")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isCreated())
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.CREATE_USER_ERROR.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","32");
|
||||
paramsMap.add("userName","user_test");
|
||||
paramsMap.add("userPassword","123456qwe?");
|
||||
paramsMap.add("tenantId","9");
|
||||
paramsMap.add("queue","1");
|
||||
paramsMap.add("email","12343534@qq.com");
|
||||
paramsMap.add("phone","15800000000");
|
||||
paramsMap.add("id", "32");
|
||||
paramsMap.add("userName", "user_test");
|
||||
paramsMap.add("userPassword", "123456qwe?");
|
||||
paramsMap.add("tenantId", "9");
|
||||
paramsMap.add("queue", "1");
|
||||
paramsMap.add("email", "12343534@qq.com");
|
||||
paramsMap.add("phone", "15800000000");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/update")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -86,15 +87,14 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
Assert.assertEquals(Status.UPDATE_USER_ERROR.getCode(), result.getCode().intValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGrantProject() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","32");
|
||||
paramsMap.add("projectIds","3");
|
||||
paramsMap.add("userId", "32");
|
||||
paramsMap.add("projectIds", "3");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/grant-project")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -104,15 +104,15 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.USER_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGrantResource() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","32");
|
||||
paramsMap.add("resourceIds","5");
|
||||
paramsMap.add("userId", "32");
|
||||
paramsMap.add("resourceIds", "5");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/grant-file")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -122,15 +122,15 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.USER_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGrantUDFFunc() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","32");
|
||||
paramsMap.add("udfIds","5");
|
||||
paramsMap.add("userId", "32");
|
||||
paramsMap.add("udfIds", "5");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/grant-udf-func")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -140,15 +140,15 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.USER_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGrantDataSource() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userId","32");
|
||||
paramsMap.add("datasourceIds","5");
|
||||
paramsMap.add("userId", "32");
|
||||
paramsMap.add("datasourceIds", "5");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/grant-datasource")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -158,7 +158,7 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.USER_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@ -171,14 +171,14 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testListAll() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName","test");
|
||||
paramsMap.add("userName", "test");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/users/list-all")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -188,14 +188,16 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
// todo: there is a sql error, the table t_ds_relation_user_alertgroup has already been dropped
|
||||
@Ignore
|
||||
@Test
|
||||
public void testAuthorizedUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("alertgroupId","1");
|
||||
paramsMap.add("alertgroupId", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/users/authed-user")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -205,14 +207,16 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
// todo: t_ds_relation_user_alertgroup has already been dropped
|
||||
@Ignore
|
||||
@Test
|
||||
public void testUnauthorizedUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("alertgroupId","1");
|
||||
paramsMap.add("alertgroupId", "1");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(get("/users/unauth-user")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -222,27 +226,30 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVerifyUserName() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName", "hello");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/users/verify-user-name")
|
||||
.header(SESSION_ID, sessionId))
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDelUserById() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","32");
|
||||
paramsMap.add("id", "32");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/delete")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -252,7 +259,7 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.USER_NOT_EXIST.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@ -266,32 +273,33 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
logger.info(mvcResult.getResponse().getContentAsString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRegisterUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName","user_test");
|
||||
paramsMap.add("userPassword","123456qwe?");
|
||||
paramsMap.add("userName", "user_test");
|
||||
paramsMap.add("userPassword", "123456qwe?");
|
||||
paramsMap.add("repeatPassword", "123456qwe?");
|
||||
paramsMap.add("email","12343534@qq.com");
|
||||
paramsMap.add("email", "12343534@qq.com");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/register")
|
||||
.header(SESSION_ID, sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testActivateUser() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("userName","user_test");
|
||||
paramsMap.add("userName", "user_test");
|
||||
|
||||
MvcResult mvcResult = mockMvc.perform(post("/users/activate")
|
||||
.header(SESSION_ID, sessionId)
|
||||
@ -301,7 +309,7 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -319,6 +327,6 @@ public class UsersControllerTest extends AbstractControllerTest {
|
||||
.andReturn();
|
||||
|
||||
Result result = JSONUtils.parseObject(mvcResult.getResponse().getContentAsString(), Result.class);
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(),result.getCode().intValue());
|
||||
Assert.assertEquals(Status.SUCCESS.getCode(), result.getCode().intValue());
|
||||
}
|
||||
}
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.api.controller;
|
||||
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
@ -72,7 +73,7 @@ public class WorkerGroupControllerTest extends AbstractControllerTest {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("name","cxc_work_group");
|
||||
paramsMap.add("addrList","192.168.0.1,192.168.0.2");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/worker-group/save")
|
||||
MvcResult mvcResult = mockMvc.perform(post("/worker-groups")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -89,7 +90,7 @@ public class WorkerGroupControllerTest extends AbstractControllerTest {
|
||||
paramsMap.add("pageNo","2");
|
||||
paramsMap.add("searchVal","cxc");
|
||||
paramsMap.add("pageSize","2");
|
||||
MvcResult mvcResult = mockMvc.perform(get("/worker-group/list-paging")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/worker-groups")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -103,7 +104,7 @@ public class WorkerGroupControllerTest extends AbstractControllerTest {
|
||||
@Test
|
||||
public void testQueryAllWorkerGroups() throws Exception {
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
MvcResult mvcResult = mockMvc.perform(get("/worker-group/all-groups")
|
||||
MvcResult mvcResult = mockMvc.perform(get("/worker-groups/all")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
.andExpect(status().isOk())
|
||||
@ -124,11 +125,8 @@ public class WorkerGroupControllerTest extends AbstractControllerTest {
|
||||
Mockito.when(workerGroupMapper.deleteById(12)).thenReturn(1);
|
||||
Mockito.when(processInstanceMapper.updateProcessInstanceByWorkerGroupName("测试", "")).thenReturn(1);
|
||||
|
||||
MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
|
||||
paramsMap.add("id","12");
|
||||
MvcResult mvcResult = mockMvc.perform(post("/worker-group/delete-by-id")
|
||||
.header("sessionId", sessionId)
|
||||
.params(paramsMap))
|
||||
MvcResult mvcResult = mockMvc.perform(delete("/worker-groups/{id}", "12")
|
||||
.header("sessionId", sessionId))
|
||||
.andExpect(status().isOk())
|
||||
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8))
|
||||
.andReturn();
|
||||
|
@ -19,8 +19,9 @@ package org.apache.dolphinscheduler.api.interceptor;
|
||||
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
import org.apache.dolphinscheduler.api.controller.AbstractControllerTest;
|
||||
import org.apache.dolphinscheduler.api.ApiApplicationServer;
|
||||
import org.apache.dolphinscheduler.api.security.Authenticator;
|
||||
import org.apache.dolphinscheduler.common.enums.ProfileType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
import org.apache.dolphinscheduler.dao.mapper.UserMapper;
|
||||
@ -30,13 +31,20 @@ import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mockito;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
public class LoginHandlerInterceptorTest extends AbstractControllerTest {
|
||||
@ActiveProfiles(value = {ProfileType.H2})
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = ApiApplicationServer.class)
|
||||
public class LoginHandlerInterceptorTest {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(LoginHandlerInterceptorTest.class);
|
||||
|
||||
@ -45,7 +53,7 @@ public class LoginHandlerInterceptorTest extends AbstractControllerTest {
|
||||
@MockBean
|
||||
private Authenticator authenticator;
|
||||
@MockBean
|
||||
private UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Test
|
||||
public void testPreHandle() {
|
||||
|
@ -21,6 +21,7 @@ import org.apache.dolphinscheduler.api.ApiApplicationServer;
|
||||
import org.apache.dolphinscheduler.api.enums.Status;
|
||||
import org.apache.dolphinscheduler.api.service.impl.WorkerGroupServiceImpl;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.ProfileType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstance;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
@ -40,8 +41,10 @@ import org.mockito.Mockito;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
@ActiveProfiles(value = {ProfileType.H2})
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@SpringBootTest(classes = ApiApplicationServer.class)
|
||||
public class WorkerGroupServiceTest {
|
||||
|
@ -402,7 +402,7 @@ public final class Constants {
|
||||
/**
|
||||
* datasource configuration path
|
||||
*/
|
||||
public static final String DATASOURCE_PROPERTIES = "/datasource.properties";
|
||||
public static final String DATASOURCE_PROPERTIES = "/datasource-%s.properties";
|
||||
|
||||
public static final String COMMON_TASK_TYPE = "common";
|
||||
|
||||
|
@ -14,18 +14,21 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
package org.apache.dolphinscheduler.common.enums;
|
||||
|
||||
@SpringBootApplication
|
||||
@ComponentScan("org.apache.dolphinscheduler")
|
||||
public class Application {
|
||||
import java.util.List;
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(Application.class);
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
}
|
||||
public enum ProfileType {
|
||||
;
|
||||
|
||||
public static final String H2 = "h2";
|
||||
|
||||
public static final String MYSQL = "mysql";
|
||||
|
||||
public static final String POSTGRESQL = "postgresql";
|
||||
|
||||
public static final List<String> DATASOURCE_PROFILE = Lists.newArrayList(H2, MYSQL, POSTGRESQL);
|
||||
}
|
@ -14,13 +14,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.dolphinscheduler.dao.datasource;
|
||||
|
||||
import com.alibaba.druid.pool.DruidDataSource;
|
||||
import com.baomidou.mybatisplus.core.MybatisConfiguration;
|
||||
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
|
||||
import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.ibatis.mapping.Environment;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
import org.apache.ibatis.session.SqlSessionFactory;
|
||||
@ -35,6 +31,10 @@ import org.mybatis.spring.SqlSessionTemplate;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.baomidou.mybatisplus.core.MybatisConfiguration;
|
||||
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
|
||||
import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
||||
|
||||
/**
|
||||
* not spring manager connection, only use for init db, and alert module for non-spring application
|
||||
* data source connection factory
|
||||
@ -53,6 +53,7 @@ public class ConnectionFactory extends SpringConnectionFactory {
|
||||
|
||||
private ConnectionFactory() {
|
||||
try {
|
||||
init();
|
||||
dataSource = buildDataSource();
|
||||
sqlSessionFactory = getSqlSessionFactory();
|
||||
sqlSessionTemplate = getSqlSessionTemplate();
|
||||
@ -85,8 +86,7 @@ public class ConnectionFactory extends SpringConnectionFactory {
|
||||
*/
|
||||
private DataSource buildDataSource() throws SQLException {
|
||||
|
||||
DruidDataSource druidDataSource = dataSource();
|
||||
return druidDataSource;
|
||||
return dataSource();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -114,7 +114,7 @@ public class ConnectionFactory extends SpringConnectionFactory {
|
||||
sqlSessionFactory = sqlSessionFactoryBean.getObject();
|
||||
|
||||
return sqlSessionFactory;
|
||||
}
|
||||
}
|
||||
|
||||
private SqlSessionTemplate getSqlSessionTemplate() {
|
||||
sqlSessionTemplate = new SqlSessionTemplate(sqlSessionFactory);
|
||||
|
@ -20,8 +20,10 @@ package org.apache.dolphinscheduler.dao.datasource;
|
||||
import static org.apache.dolphinscheduler.common.Constants.DATASOURCE_PROPERTIES;
|
||||
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.enums.ProfileType;
|
||||
import org.apache.dolphinscheduler.common.utils.PropertyUtils;
|
||||
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.ibatis.mapping.DatabaseIdProvider;
|
||||
import org.apache.ibatis.mapping.VendorDatabaseIdProvider;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
@ -29,17 +31,30 @@ import org.apache.ibatis.session.SqlSessionFactory;
|
||||
import org.apache.ibatis.type.JdbcType;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.h2.Driver;
|
||||
import org.mybatis.spring.SqlSessionTemplate;
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.env.Environment;
|
||||
import org.springframework.core.io.FileSystemResourceLoader;
|
||||
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
|
||||
import org.springframework.core.io.support.ResourcePatternResolver;
|
||||
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
|
||||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;
|
||||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType;
|
||||
|
||||
import com.alibaba.druid.pool.DruidDataSource;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
@ -47,7 +62,7 @@ import com.baomidou.mybatisplus.core.MybatisConfiguration;
|
||||
import com.baomidou.mybatisplus.core.config.GlobalConfig;
|
||||
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
|
||||
import com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
/**
|
||||
* data source connection factory
|
||||
@ -58,8 +73,24 @@ public class SpringConnectionFactory {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(SpringConnectionFactory.class);
|
||||
|
||||
static {
|
||||
PropertyUtils.loadPropertyFile(DATASOURCE_PROPERTIES);
|
||||
@Autowired
|
||||
private Environment environment;
|
||||
|
||||
private static final AtomicBoolean H2_INITIALIZED = new AtomicBoolean(false);
|
||||
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
String datasourceProfile = getSpringActiveProfile().stream()
|
||||
.filter(ProfileType.DATASOURCE_PROFILE::contains)
|
||||
.findFirst()
|
||||
.orElse("");
|
||||
if (StringUtils.isEmpty(datasourceProfile) || ProfileType.MYSQL.equals(datasourceProfile)) {
|
||||
// default load datasource.properties
|
||||
PropertyUtils.loadPropertyFile(DATASOURCE_PROPERTIES.replace("-%s", ""));
|
||||
} else {
|
||||
// load datasource-{spring.profiles.active}.properties
|
||||
PropertyUtils.loadPropertyFile(String.format(DATASOURCE_PROPERTIES, datasourceProfile));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -77,12 +108,16 @@ public class SpringConnectionFactory {
|
||||
*
|
||||
* @return druid dataSource
|
||||
*/
|
||||
@Bean(destroyMethod = "")
|
||||
public DruidDataSource dataSource() throws SQLException {
|
||||
@Bean(destroyMethod = "", name = "datasource")
|
||||
public DataSource dataSource() throws SQLException {
|
||||
String driverClassName = PropertyUtils.getString(Constants.SPRING_DATASOURCE_DRIVER_CLASS_NAME);
|
||||
if (Driver.class.getName().equals(driverClassName)) {
|
||||
initializeH2Datasource();
|
||||
}
|
||||
|
||||
DruidDataSource druidDataSource = new DruidDataSource();
|
||||
|
||||
druidDataSource.setDriverClassName(PropertyUtils.getString(Constants.SPRING_DATASOURCE_DRIVER_CLASS_NAME));
|
||||
druidDataSource.setDriverClassName(driverClassName);
|
||||
druidDataSource.setUrl(PropertyUtils.getString(Constants.SPRING_DATASOURCE_URL));
|
||||
druidDataSource.setUsername(PropertyUtils.getString(Constants.SPRING_DATASOURCE_USERNAME));
|
||||
druidDataSource.setPassword(PropertyUtils.getString(Constants.SPRING_DATASOURCE_PASSWORD));
|
||||
@ -106,17 +141,31 @@ public class SpringConnectionFactory {
|
||||
//auto commit
|
||||
druidDataSource.setDefaultAutoCommit(PropertyUtils.getBoolean(Constants.SPRING_DATASOURCE_DEFAULT_AUTO_COMMIT, true));
|
||||
druidDataSource.init();
|
||||
logger.info("Initialize Druid DataSource success");
|
||||
return druidDataSource;
|
||||
}
|
||||
|
||||
private void initializeH2Datasource() {
|
||||
if (H2_INITIALIZED.compareAndSet(false, true)) {
|
||||
EmbeddedDatabaseBuilder embeddedDatabaseBuilder = new EmbeddedDatabaseBuilder(new FileSystemResourceLoader());
|
||||
embeddedDatabaseBuilder
|
||||
.setType(EmbeddedDatabaseType.H2)
|
||||
.setScriptEncoding(Constants.UTF_8)
|
||||
.setName("dolphinscheduler;MODE=MySQL;DATABASE_TO_LOWER=TRUE;DB_CLOSE_DELAY=-1")
|
||||
.addScript(PropertyUtils.getString("spring.datasource.sql.schema", "file:../sql/dolphinscheduler_h2.sql"))
|
||||
.build();
|
||||
logger.info("Initialize H2 DataSource success");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* * get transaction manager
|
||||
*
|
||||
* @return DataSourceTransactionManager
|
||||
*/
|
||||
@Bean
|
||||
public DataSourceTransactionManager transactionManager() throws SQLException {
|
||||
return new DataSourceTransactionManager(dataSource());
|
||||
public DataSourceTransactionManager transactionManager(DataSource dataSource) {
|
||||
return new DataSourceTransactionManager(dataSource);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -126,7 +175,7 @@ public class SpringConnectionFactory {
|
||||
* @throws Exception sqlSessionFactory exception
|
||||
*/
|
||||
@Bean
|
||||
public SqlSessionFactory sqlSessionFactory() throws Exception {
|
||||
public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Exception {
|
||||
MybatisConfiguration configuration = new MybatisConfiguration();
|
||||
configuration.setMapUnderscoreToCamelCase(true);
|
||||
configuration.setCacheEnabled(false);
|
||||
@ -135,7 +184,7 @@ public class SpringConnectionFactory {
|
||||
configuration.addInterceptor(paginationInterceptor());
|
||||
MybatisSqlSessionFactoryBean sqlSessionFactoryBean = new MybatisSqlSessionFactoryBean();
|
||||
sqlSessionFactoryBean.setConfiguration(configuration);
|
||||
sqlSessionFactoryBean.setDataSource(dataSource());
|
||||
sqlSessionFactoryBean.setDataSource(dataSource);
|
||||
|
||||
GlobalConfig.DbConfig dbConfig = new GlobalConfig.DbConfig();
|
||||
dbConfig.setIdType(IdType.AUTO);
|
||||
@ -156,8 +205,8 @@ public class SpringConnectionFactory {
|
||||
* @return SqlSession
|
||||
*/
|
||||
@Bean
|
||||
public SqlSession sqlSession() throws Exception {
|
||||
return new SqlSessionTemplate(sqlSessionFactory());
|
||||
public SqlSession sqlSession(SqlSessionFactory sqlSessionFactory) {
|
||||
return new SqlSessionTemplate(sqlSessionFactory);
|
||||
}
|
||||
|
||||
@Bean
|
||||
@ -170,4 +219,17 @@ public class SpringConnectionFactory {
|
||||
databaseIdProvider.setProperties(properties);
|
||||
return databaseIdProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get spring active profile, which will be set by -Dspring.profiles.active=api, or in application.xml
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
private List<String> getSpringActiveProfile() {
|
||||
if (environment != null) {
|
||||
return Lists.newArrayList(environment.getActiveProfiles());
|
||||
}
|
||||
String property = System.getProperty("spring.profiles.active", "");
|
||||
return Arrays.stream(property.split(",")).map(String::trim).collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,22 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
# datasource configuration
|
||||
spring.datasource.driver-class-name=org.h2.Driver
|
||||
spring.datasource.url=jdbc:h2:mem:dolphinscheduler;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true
|
||||
spring.datasource.username=sa
|
||||
spring.datasource.password=
|
@ -0,0 +1,63 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
# datasource configuration
|
||||
spring.datasource.driver-class-name=org.postgresql.Driver
|
||||
spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
||||
spring.datasource.username=root
|
||||
spring.datasource.password=root
|
||||
|
||||
# connection configuration
|
||||
#spring.datasource.initialSize=5
|
||||
# min connection number
|
||||
#spring.datasource.minIdle=5
|
||||
# max connection number
|
||||
#spring.datasource.maxActive=50
|
||||
|
||||
# max wait time for get a connection in milliseconds. if configuring maxWait, fair locks are enabled by default and concurrency efficiency decreases.
|
||||
# If necessary, unfair locks can be used by configuring the useUnfairLock attribute to true.
|
||||
#spring.datasource.maxWait=60000
|
||||
|
||||
# milliseconds for check to close free connections
|
||||
#spring.datasource.timeBetweenEvictionRunsMillis=60000
|
||||
|
||||
# the Destroy thread detects the connection interval and closes the physical connection in milliseconds if the connection idle time is greater than or equal to minEvictableIdleTimeMillis.
|
||||
#spring.datasource.timeBetweenConnectErrorMillis=60000
|
||||
|
||||
# the longest time a connection remains idle without being evicted, in milliseconds
|
||||
#spring.datasource.minEvictableIdleTimeMillis=300000
|
||||
|
||||
#the SQL used to check whether the connection is valid requires a query statement. If validation Query is null, testOnBorrow, testOnReturn, and testWhileIdle will not work.
|
||||
#spring.datasource.validationQuery=SELECT 1
|
||||
|
||||
#check whether the connection is valid for timeout, in seconds
|
||||
#spring.datasource.validationQueryTimeout=3
|
||||
|
||||
# when applying for a connection, if it is detected that the connection is idle longer than time Between Eviction Runs Millis,
|
||||
# validation Query is performed to check whether the connection is valid
|
||||
#spring.datasource.testWhileIdle=true
|
||||
|
||||
#execute validation to check if the connection is valid when applying for a connection
|
||||
#spring.datasource.testOnBorrow=true
|
||||
#execute validation to check if the connection is valid when the connection is returned
|
||||
#spring.datasource.testOnReturn=false
|
||||
#spring.datasource.defaultAutoCommit=true
|
||||
#spring.datasource.keepAlive=true
|
||||
|
||||
# open PSCache, specify count PSCache for every connection
|
||||
#spring.datasource.poolPreparedStatements=true
|
||||
#spring.datasource.maxPoolPreparedStatementPerConnectionSize=20
|
@ -15,17 +15,11 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
# datasource configuration
|
||||
spring.datasource.driver-class-name=org.postgresql.Driver
|
||||
spring.datasource.url=jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
||||
spring.datasource.username=root
|
||||
spring.datasource.password=root
|
||||
|
||||
# mysql example
|
||||
#spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
||||
#spring.datasource.url=jdbc:mysql://127.0.0.1:3306/dolphinscheduler?useUnicode=true&characterEncoding=UTF-8
|
||||
#spring.datasource.username=ds_user
|
||||
#spring.datasource.password=dolphinscheduler
|
||||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
||||
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/dolphinscheduler?useUnicode=true&characterEncoding=UTF-8
|
||||
spring.datasource.username=ds_user
|
||||
spring.datasource.password=dolphinscheduler
|
||||
|
||||
# connection configuration
|
||||
#spring.datasource.initialSize=5
|
||||
|
@ -23,12 +23,18 @@ import org.apache.dolphinscheduler.dao.entity.Alert;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@Transactional
|
||||
public class AlertDaoTest {
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAlertDao() {
|
||||
AlertDao alertDao = DaoFactory.getDaoInstance(AlertDao.class);
|
||||
|
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* 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.dolphinscheduler.dao;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.ProfileType;
|
||||
import org.apache.dolphinscheduler.dao.datasource.SpringConnectionFactory;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@ActiveProfiles(value = ProfileType.H2)
|
||||
@ContextConfiguration(classes = SpringConnectionFactory.class)
|
||||
@Transactional
|
||||
@Rollback
|
||||
public abstract class BaseDaoTest {
|
||||
}
|
@ -25,6 +25,7 @@ import static org.junit.Assert.assertTrue;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.AccessToken;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
@ -34,12 +35,7 @@ import java.util.concurrent.ThreadLocalRandom;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
@ -47,17 +43,13 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
/**
|
||||
* AccessToken mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback
|
||||
public class AccessTokenMapperTest {
|
||||
public class AccessTokenMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
AccessTokenMapper accessTokenMapper;
|
||||
private AccessTokenMapper accessTokenMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
/**
|
||||
* test insert
|
||||
@ -74,7 +66,7 @@ public class AccessTokenMapperTest {
|
||||
* test delete AccessToken By UserId
|
||||
*/
|
||||
@Test
|
||||
public void testDeleteAccessTokenByUserId() throws Exception {
|
||||
public void testDeleteAccessTokenByUserId() {
|
||||
Integer userId = 1;
|
||||
int insertCount = 0;
|
||||
|
||||
@ -223,9 +215,8 @@ public class AccessTokenMapperTest {
|
||||
*
|
||||
* @param userName userName
|
||||
* @return user
|
||||
* @throws Exception
|
||||
*/
|
||||
private User createUser(String userName) throws Exception {
|
||||
private User createUser(String userName) {
|
||||
User user = new User();
|
||||
user.setUserName(userName);
|
||||
user.setUserPassword("123");
|
||||
@ -252,9 +243,8 @@ public class AccessTokenMapperTest {
|
||||
* @param userId userId
|
||||
* @param userName userName
|
||||
* @return accessToken
|
||||
* @throws Exception
|
||||
*/
|
||||
private AccessToken createAccessToken(Integer userId, String userName) throws Exception {
|
||||
private AccessToken createAccessToken(Integer userId, String userName) {
|
||||
//insertOne
|
||||
AccessToken accessToken = new AccessToken();
|
||||
accessToken.setUserName(userName);
|
||||
|
@ -25,6 +25,7 @@ import static org.junit.Assert.assertNull;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.AlertGroup;
|
||||
|
||||
import java.util.HashMap;
|
||||
@ -33,12 +34,7 @@ import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
@ -46,14 +42,10 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
/**
|
||||
* AlertGroup mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class AlertGroupMapperTest {
|
||||
public class AlertGroupMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
AlertGroupMapper alertGroupMapper;
|
||||
private AlertGroupMapper alertGroupMapper;
|
||||
|
||||
/**
|
||||
* test insert
|
||||
|
@ -24,6 +24,7 @@ import static org.junit.Assert.assertThat;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.AlertStatus;
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Alert;
|
||||
|
||||
import java.util.HashMap;
|
||||
@ -31,21 +32,12 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
/**
|
||||
* alert mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class AlertMapperTest {
|
||||
public class AlertMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
private AlertMapper alertMapper;
|
||||
|
@ -18,6 +18,7 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.AlertGroup;
|
||||
import org.apache.dolphinscheduler.dao.entity.AlertPluginInstance;
|
||||
import org.apache.dolphinscheduler.dao.entity.PluginDefine;
|
||||
@ -26,34 +27,25 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
/**
|
||||
* AlertPluginInstanceMapper mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class AlertPluginInstanceMapperTest {
|
||||
public class AlertPluginInstanceMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
AlertPluginInstanceMapper alertPluginInstanceMapper;
|
||||
private AlertPluginInstanceMapper alertPluginInstanceMapper;
|
||||
|
||||
@Autowired
|
||||
PluginDefineMapper pluginDefineMapper;
|
||||
private PluginDefineMapper pluginDefineMapper;
|
||||
|
||||
@Autowired
|
||||
AlertGroupMapper alertGroupMapper;
|
||||
private AlertGroupMapper alertGroupMapper;
|
||||
|
||||
@Test
|
||||
public void testQueryAllAlertPluginInstanceList() {
|
||||
AlertPluginInstance alertPluginInstance = createAlertPluginInstance();
|
||||
createAlertPluginInstance();
|
||||
List<AlertPluginInstance> alertPluginInstanceList = alertPluginInstanceMapper.queryAllAlertPluginInstanceList();
|
||||
Assert.assertTrue(alertPluginInstanceList.size() > 0);
|
||||
}
|
||||
|
@ -33,6 +33,7 @@ import org.apache.dolphinscheduler.common.enums.ReleaseState;
|
||||
import org.apache.dolphinscheduler.common.enums.TaskDependType;
|
||||
import org.apache.dolphinscheduler.common.enums.WarningType;
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Command;
|
||||
import org.apache.dolphinscheduler.dao.entity.CommandCount;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
@ -43,27 +44,18 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
/**
|
||||
* command mapper test
|
||||
* command mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class CommandMapperTest {
|
||||
public class CommandMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
CommandMapper commandMapper;
|
||||
private CommandMapper commandMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
/**
|
||||
* test insert
|
||||
|
@ -31,6 +31,7 @@ public class ConnectionFactoryTest {
|
||||
*/
|
||||
@Test
|
||||
public void testConnection()throws Exception{
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
Connection connection = ConnectionFactory.getInstance().getDataSource().getConnection();
|
||||
Assert.assertTrue(connection != null);
|
||||
}
|
||||
|
@ -18,7 +18,6 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
import static org.hamcrest.Matchers.greaterThan;
|
||||
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
@ -28,6 +27,7 @@ import static org.junit.Assert.assertThat;
|
||||
import org.apache.dolphinscheduler.common.enums.DbType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.DataSource;
|
||||
import org.apache.dolphinscheduler.dao.entity.DatasourceUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
@ -41,36 +41,27 @@ import java.util.Random;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
/**
|
||||
* datasource mapper test
|
||||
* datasource mapper test
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class DataSourceMapperTest {
|
||||
public class DataSourceMapperTest extends BaseDaoTest {
|
||||
|
||||
/**
|
||||
* datasource mapper
|
||||
*/
|
||||
@Autowired
|
||||
DataSourceMapper dataSourceMapper;
|
||||
private DataSourceMapper dataSourceMapper;
|
||||
|
||||
/**
|
||||
* datasource user relation mapper
|
||||
*/
|
||||
@Autowired
|
||||
DataSourceUserMapper dataSourceUserMapper;
|
||||
private DataSourceUserMapper dataSourceUserMapper;
|
||||
|
||||
@Autowired
|
||||
private UserMapper userMapper;
|
||||
|
@ -16,35 +16,27 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.DatasourceUser;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class DataSourceUserMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
public class DataSourceUserMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
DataSourceUserMapper dataSourceUserMapper;
|
||||
|
||||
private DataSourceUserMapper dataSourceUserMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return DatasourceUser
|
||||
*/
|
||||
private DatasourceUser insertOne(){
|
||||
private DatasourceUser insertOne() {
|
||||
//insertOne
|
||||
DatasourceUser dataSourceUser = new DatasourceUser();
|
||||
dataSourceUser.setUserId(4);
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Environment;
|
||||
|
||||
import java.util.Date;
|
||||
@ -26,21 +27,12 @@ import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(false)
|
||||
public class EnvironmentMapperTest {
|
||||
public class EnvironmentMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
EnvironmentMapper environmentMapper;
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.EnvironmentWorkerGroupRelation;
|
||||
|
||||
import java.util.Date;
|
||||
@ -26,21 +27,12 @@ import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class EnvironmentWorkerGroupRelationMapperTest {
|
||||
public class EnvironmentWorkerGroupRelationMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
EnvironmentWorkerGroupRelationMapper environmentWorkerGroupRelationMapper;
|
||||
private EnvironmentWorkerGroupRelationMapper environmentWorkerGroupRelationMapper;
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
|
@ -18,6 +18,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.CommandType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.CommandCount;
|
||||
import org.apache.dolphinscheduler.dao.entity.ErrorCommand;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
@ -27,25 +28,15 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ErrorCommandMapperTest {
|
||||
public class ErrorCommandMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ErrorCommandMapper errorCommandMapper;
|
||||
private ErrorCommandMapper errorCommandMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -17,28 +17,19 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.PluginDefine;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
|
||||
public class PluginDefineTest {
|
||||
public class PluginDefineTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
PluginDefineMapper pluginDefineMapper;
|
||||
private PluginDefineMapper pluginDefineMapper;
|
||||
|
||||
@Test
|
||||
public void testQueryAllPluginDefineList() {
|
||||
|
@ -18,6 +18,7 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinitionLog;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
@ -27,38 +28,20 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessDefinitionLogMapperTest {
|
||||
public class ProcessDefinitionLogMapperTest extends BaseDaoTest {
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
@Autowired
|
||||
QueueMapper queueMapper;
|
||||
|
||||
@Autowired
|
||||
TenantMapper tenantMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionLogMapper processDefinitionLogMapper;
|
||||
private ProcessDefinitionLogMapper processDefinitionLogMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -19,6 +19,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.ReleaseState;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.DefinitionGroupByUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
@ -29,69 +30,44 @@ import org.apache.dolphinscheduler.dao.entity.User;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessDefinitionMapperTest {
|
||||
|
||||
public class ProcessDefinitionMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
QueueMapper queueMapper;
|
||||
private QueueMapper queueMapper;
|
||||
|
||||
@Autowired
|
||||
TenantMapper tenantMapper;
|
||||
private TenantMapper tenantMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
private AtomicLong atomicLong = new AtomicLong(0);
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return ProcessDefinition
|
||||
*/
|
||||
private ProcessDefinition insertOne() {
|
||||
private ProcessDefinition insertOne(String name) {
|
||||
//insertOne
|
||||
ProcessDefinition processDefinition = new ProcessDefinition();
|
||||
processDefinition.setCode(1L);
|
||||
processDefinition.setName("def 1");
|
||||
processDefinition.setProjectCode(1010L);
|
||||
processDefinition.setUserId(101);
|
||||
processDefinition.setUpdateTime(new Date());
|
||||
processDefinition.setCreateTime(new Date());
|
||||
processDefinitionMapper.insert(processDefinition);
|
||||
return processDefinition;
|
||||
}
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return ProcessDefinition
|
||||
*/
|
||||
private ProcessDefinition insertTwo() {
|
||||
//insertOne
|
||||
ProcessDefinition processDefinition = new ProcessDefinition();
|
||||
processDefinition.setCode(1L);
|
||||
processDefinition.setName("def 2");
|
||||
processDefinition.setCode(atomicLong.getAndIncrement());
|
||||
processDefinition.setName(name);
|
||||
processDefinition.setProjectCode(1010L);
|
||||
processDefinition.setUserId(101);
|
||||
processDefinition.setUpdateTime(new Date());
|
||||
@ -106,7 +82,7 @@ public class ProcessDefinitionMapperTest {
|
||||
@Test
|
||||
public void testUpdate() {
|
||||
//insertOne
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
//update
|
||||
processDefinition.setUpdateTime(new Date());
|
||||
int update = processDefinitionMapper.updateById(processDefinition);
|
||||
@ -118,7 +94,7 @@ public class ProcessDefinitionMapperTest {
|
||||
*/
|
||||
@Test
|
||||
public void testDelete() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
int delete = processDefinitionMapper.deleteById(processDefinition.getId());
|
||||
Assert.assertEquals(1, delete);
|
||||
}
|
||||
@ -128,7 +104,7 @@ public class ProcessDefinitionMapperTest {
|
||||
*/
|
||||
@Test
|
||||
public void testQuery() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
insertOne("def 1");
|
||||
//query
|
||||
List<ProcessDefinition> dataSources = processDefinitionMapper.selectList(null);
|
||||
Assert.assertNotEquals(dataSources.size(), 0);
|
||||
@ -286,7 +262,7 @@ public class ProcessDefinitionMapperTest {
|
||||
*/
|
||||
@Test
|
||||
public void testQueryDefineListPaging() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
insertOne("def 1");
|
||||
Page<ProcessDefinition> page = new Page(1, 3);
|
||||
IPage<ProcessDefinition> processDefinitionIPage = processDefinitionMapper.queryDefineListPaging(page, "def", 101, 1010L, true);
|
||||
Assert.assertNotEquals(processDefinitionIPage.getTotal(), 0);
|
||||
@ -297,7 +273,7 @@ public class ProcessDefinitionMapperTest {
|
||||
*/
|
||||
@Test
|
||||
public void testQueryAllDefinitionList() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
insertOne("def 1");
|
||||
List<ProcessDefinition> processDefinitionIPage = processDefinitionMapper.queryAllDefinitionList(1010L);
|
||||
Assert.assertNotEquals(processDefinitionIPage.size(), 0);
|
||||
}
|
||||
@ -308,8 +284,8 @@ public class ProcessDefinitionMapperTest {
|
||||
@Test
|
||||
public void testQueryDefinitionListByIdList() {
|
||||
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition1 = insertTwo();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
ProcessDefinition processDefinition1 = insertOne("def 2");
|
||||
|
||||
Integer[] array = new Integer[2];
|
||||
array[0] = processDefinition.getId();
|
||||
@ -336,7 +312,7 @@ public class ProcessDefinitionMapperTest {
|
||||
user.setUpdateTime(new Date());
|
||||
userMapper.insert(user);
|
||||
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
processDefinition.setUserId(user.getId());
|
||||
processDefinitionMapper.updateById(processDefinition);
|
||||
|
||||
@ -352,7 +328,7 @@ public class ProcessDefinitionMapperTest {
|
||||
|
||||
@Test
|
||||
public void listResourcesTest() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
processDefinition.setResourceIds("3,5");
|
||||
processDefinition.setReleaseState(ReleaseState.ONLINE);
|
||||
List<Map<String, Object>> maps = processDefinitionMapper.listResources();
|
||||
@ -361,7 +337,7 @@ public class ProcessDefinitionMapperTest {
|
||||
|
||||
@Test
|
||||
public void listResourcesByUserTest() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
ProcessDefinition processDefinition = insertOne("def 1");
|
||||
processDefinition.setResourceIds("3,5");
|
||||
processDefinition.setReleaseState(ReleaseState.ONLINE);
|
||||
List<Map<String, Object>> maps = processDefinitionMapper.listResourcesByUser(processDefinition.getUserId());
|
||||
@ -370,7 +346,7 @@ public class ProcessDefinitionMapperTest {
|
||||
|
||||
@Test
|
||||
public void listProjectIds() {
|
||||
ProcessDefinition processDefinition = insertOne();
|
||||
insertOne("def 1");
|
||||
List<Integer> projectIds = processDefinitionMapper.listProjectIds();
|
||||
Assert.assertNotNull(projectIds);
|
||||
}
|
||||
|
@ -16,35 +16,26 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstanceMap;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessInstanceMapMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
public class ProcessInstanceMapMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProcessInstanceMapMapper processInstanceMapMapper;
|
||||
|
||||
private ProcessInstanceMapMapper processInstanceMapMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return ProcessInstanceMap
|
||||
*/
|
||||
private ProcessInstanceMap insertOne(){
|
||||
private ProcessInstanceMap insertOne() {
|
||||
//insertOne
|
||||
ProcessInstanceMap processInstanceMap = new ProcessInstanceMap();
|
||||
processInstanceMap.setProcessInstanceId(0);
|
||||
|
@ -16,10 +16,10 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.ExecutionStatus;
|
||||
import org.apache.dolphinscheduler.common.enums.Flag;
|
||||
import org.apache.dolphinscheduler.common.enums.ReleaseState;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ExecuteStatusCount;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstance;
|
||||
@ -30,32 +30,21 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessInstanceMapperTest {
|
||||
|
||||
public class ProcessInstanceMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProcessInstanceMapper processInstanceMapper;
|
||||
private ProcessInstanceMapper processInstanceMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
/**
|
||||
* insert process instance with specified start time and end time,set state to SUCCESS
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessTaskRelationLog;
|
||||
|
||||
import java.util.Date;
|
||||
@ -24,21 +25,12 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessTaskRelationLogMapperTest {
|
||||
public class ProcessTaskRelationLogMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProcessTaskRelationLogMapper processTaskRelationLogMapper;
|
||||
private ProcessTaskRelationLogMapper processTaskRelationLogMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessTaskRelation;
|
||||
|
||||
import java.util.Date;
|
||||
@ -25,21 +26,12 @@ import java.util.List;
|
||||
import org.assertj.core.util.Arrays;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProcessTaskRelationMapperTest {
|
||||
public class ProcessTaskRelationMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProcessTaskRelationMapper processTaskRelationMapper;
|
||||
private ProcessTaskRelationMapper processTaskRelationMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
@ -25,33 +25,18 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProjectMapperTest {
|
||||
public class ProjectMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionLogMapper processDefinitionLogMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -16,40 +16,30 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProjectUser;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.greaterThan;
|
||||
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ProjectUserMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
public class ProjectUserMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ProjectUserMapper projectUserMapper;
|
||||
private ProjectUserMapper projectUserMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return ProjectUser
|
||||
*/
|
||||
private ProjectUser insertOne(){
|
||||
private ProjectUser insertOne() {
|
||||
//insertOne
|
||||
ProjectUser projectUser = new ProjectUser();
|
||||
projectUser.setProjectId(1010);
|
||||
@ -98,7 +88,6 @@ public class ProjectUserMapperTest {
|
||||
@Test
|
||||
public void testDeleteProjectRelation() {
|
||||
|
||||
|
||||
ProjectUser projectUser = insertOne();
|
||||
int delete = projectUserMapper.deleteProjectRelation(projectUser.getProjectId(), projectUser.getUserId());
|
||||
assertThat(delete,greaterThanOrEqualTo(1));
|
||||
|
@ -17,37 +17,27 @@
|
||||
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Queue;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class QueueMapperTest {
|
||||
|
||||
public class QueueMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
QueueMapper queueMapper;
|
||||
|
||||
private QueueMapper queueMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return Queue
|
||||
*/
|
||||
private Queue insertOne() {
|
||||
|
@ -18,7 +18,6 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
import static org.hamcrest.Matchers.greaterThan;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
import static org.junit.Assert.assertThat;
|
||||
@ -27,6 +26,7 @@ import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.spi.enums.ResourceType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.common.utils.CollectionUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Resource;
|
||||
import org.apache.dolphinscheduler.dao.entity.ResourcesUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.Tenant;
|
||||
@ -39,33 +39,24 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ResourceMapperTest {
|
||||
public class ResourceMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ResourceMapper resourceMapper;
|
||||
private ResourceMapper resourceMapper;
|
||||
|
||||
@Autowired
|
||||
ResourceUserMapper resourceUserMapper;
|
||||
private ResourceUserMapper resourceUserMapper;
|
||||
|
||||
@Autowired
|
||||
TenantMapper tenantMapper;
|
||||
private TenantMapper tenantMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
@ -369,7 +360,7 @@ public class ResourceMapperTest {
|
||||
// authorize object unauthorizedResource to generalUser
|
||||
createResourcesUser(unauthorizedResource, generalUser2);
|
||||
List<Resource> authorizedResources = resourceMapper.listAuthorizedResource(generalUser2.getId(), resNames);
|
||||
Assert.assertTrue(authorizedResources.stream().map(t -> t.getFullName()).collect(toList()).containsAll(Arrays.asList(resNames)));
|
||||
Assert.assertTrue(authorizedResources.stream().map(t -> t.getFullName()).collect(toList()).containsAll(Arrays.asList(resource.getFullName())));
|
||||
|
||||
}
|
||||
|
||||
|
@ -16,8 +16,8 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ResourcesUser;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
@ -31,16 +31,10 @@ import org.springframework.transaction.annotation.Transactional;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ResourceUserMapperTest {
|
||||
|
||||
|
||||
public class ResourceUserMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ResourceUserMapper resourceUserMapper;
|
||||
private ResourceUserMapper resourceUserMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -20,6 +20,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
import org.apache.dolphinscheduler.common.enums.FailureStrategy;
|
||||
import org.apache.dolphinscheduler.common.enums.ReleaseState;
|
||||
import org.apache.dolphinscheduler.common.enums.WarningType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
import org.apache.dolphinscheduler.dao.entity.Schedule;
|
||||
@ -30,34 +31,24 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class ScheduleMapperTest {
|
||||
|
||||
public class ScheduleMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
ScheduleMapper scheduleMapper;
|
||||
private ScheduleMapper scheduleMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
private ProjectMapper projectMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -16,35 +16,28 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Session;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class SessionMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
public class SessionMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
SessionMapper sessionMapper;
|
||||
private SessionMapper sessionMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
*
|
||||
* @return Session
|
||||
*/
|
||||
private Session insertOne(){
|
||||
private Session insertOne() {
|
||||
//insertOne
|
||||
Session session = new Session();
|
||||
session.setId(UUID.randomUUID().toString());
|
||||
|
@ -18,10 +18,9 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.TaskType;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.TaskDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.TaskDefinitionLog;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
@ -29,30 +28,12 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class TaskDefinitionLogMapperTest {
|
||||
public class TaskDefinitionLogMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
TaskDefinitionLogMapper taskDefinitionLogMapper;
|
||||
|
||||
@Autowired
|
||||
TaskDefinitionMapper taskDefinitionMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
private TaskDefinitionLogMapper taskDefinitionLogMapper;
|
||||
|
||||
public TaskDefinitionLog insertOne() {
|
||||
return insertOne(99);
|
||||
|
@ -18,8 +18,8 @@
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.TaskType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.DefinitionGroupByUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.Project;
|
||||
import org.apache.dolphinscheduler.dao.entity.TaskDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
@ -29,27 +29,15 @@ import java.util.Map;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class TaskDefinitionMapperTest {
|
||||
public class TaskDefinitionMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
TaskDefinitionMapper taskDefinitionMapper;
|
||||
private TaskDefinitionMapper taskDefinitionMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
ProjectMapper projectMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
public TaskDefinition insertOne() {
|
||||
return insertOne(99);
|
||||
|
@ -20,6 +20,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
import org.apache.dolphinscheduler.common.enums.ExecutionStatus;
|
||||
import org.apache.dolphinscheduler.common.enums.Flag;
|
||||
import org.apache.dolphinscheduler.common.enums.TaskType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ExecuteStatusCount;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessInstance;
|
||||
@ -41,25 +42,16 @@ import org.springframework.transaction.annotation.Transactional;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback
|
||||
public class TaskInstanceMapperTest {
|
||||
public class TaskInstanceMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
TaskInstanceMapper taskInstanceMapper;
|
||||
private TaskInstanceMapper taskInstanceMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessDefinitionMapper processDefinitionMapper;
|
||||
private ProcessDefinitionMapper processDefinitionMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessInstanceMapper processInstanceMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessInstanceMapMapper processInstanceMapMapper;
|
||||
|
||||
private int processInstanceId;
|
||||
private ProcessInstanceMapper processInstanceMapper;
|
||||
|
||||
@Before
|
||||
public void before() {
|
||||
@ -68,7 +60,6 @@ public class TaskInstanceMapperTest {
|
||||
processInstance.setCommandParam("");
|
||||
processInstance.setProcessDefinitionCode(1L);
|
||||
processInstanceMapper.insert(processInstance);
|
||||
processInstanceId = processInstance.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -16,34 +16,27 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.Queue;
|
||||
import org.apache.dolphinscheduler.dao.entity.Tenant;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class TenantMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
public class TenantMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
TenantMapper tenantMapper;
|
||||
private TenantMapper tenantMapper;
|
||||
|
||||
@Autowired
|
||||
QueueMapper queueMapper;
|
||||
private QueueMapper queueMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -16,38 +16,30 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.UdfType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.UDFUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.UdfFunc;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class UDFUserMapperTest {
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
public class UDFUserMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
UDFUserMapper udfUserMapper;
|
||||
private UDFUserMapper udfUserMapper;
|
||||
|
||||
@Autowired
|
||||
UserMapper userMapper;
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
UdfFuncMapper udfFuncMapper;
|
||||
private UdfFuncMapper udfFuncMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -16,46 +16,37 @@
|
||||
*/
|
||||
package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.UdfType;
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.UDFUser;
|
||||
import org.apache.dolphinscheduler.dao.entity.UdfFunc;
|
||||
import org.apache.dolphinscheduler.dao.entity.User;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class UdfFuncMapperTest {
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
public class UdfFuncMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
UdfFuncMapper udfFuncMapper;
|
||||
private UdfFuncMapper udfFuncMapper;
|
||||
|
||||
@Autowired
|
||||
UDFUserMapper udfUserMapper;
|
||||
private UDFUserMapper udfUserMapper;
|
||||
|
||||
/**
|
||||
* insert one udf
|
||||
|
@ -19,6 +19,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
|
||||
import org.apache.dolphinscheduler.common.enums.UserType;
|
||||
import org.apache.dolphinscheduler.common.utils.DateUtils;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.AccessToken;
|
||||
import org.apache.dolphinscheduler.dao.entity.AlertGroup;
|
||||
import org.apache.dolphinscheduler.dao.entity.Queue;
|
||||
@ -31,35 +32,26 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class UserMapperTest {
|
||||
public class UserMapperTest extends BaseDaoTest {
|
||||
@Autowired
|
||||
private UserMapper userMapper;
|
||||
|
||||
@Autowired
|
||||
AlertGroupMapper alertGroupMapper;
|
||||
private AlertGroupMapper alertGroupMapper;
|
||||
|
||||
@Autowired
|
||||
AccessTokenMapper accessTokenMapper;
|
||||
private AccessTokenMapper accessTokenMapper;
|
||||
|
||||
@Autowired
|
||||
TenantMapper tenantMapper;
|
||||
private TenantMapper tenantMapper;
|
||||
|
||||
@Autowired
|
||||
QueueMapper queueMapper;
|
||||
private QueueMapper queueMapper;
|
||||
|
||||
/**
|
||||
* insert one user
|
||||
|
@ -19,6 +19,7 @@ package org.apache.dolphinscheduler.dao.mapper;
|
||||
import org.apache.dolphinscheduler.common.enums.FailureStrategy;
|
||||
import org.apache.dolphinscheduler.common.enums.ReleaseState;
|
||||
import org.apache.dolphinscheduler.common.enums.WarningType;
|
||||
import org.apache.dolphinscheduler.dao.BaseDaoTest;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessDefinition;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessLineage;
|
||||
import org.apache.dolphinscheduler.dao.entity.ProcessTaskRelation;
|
||||
@ -30,18 +31,9 @@ import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.annotation.Rollback;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@Transactional
|
||||
@Rollback(true)
|
||||
public class WorkFlowLineageMapperTest {
|
||||
public class WorkFlowLineageMapperTest extends BaseDaoTest {
|
||||
|
||||
@Autowired
|
||||
private WorkFlowLineageMapper workFlowLineageMapper;
|
||||
@ -53,7 +45,7 @@ public class WorkFlowLineageMapperTest {
|
||||
private ScheduleMapper scheduleMapper;
|
||||
|
||||
@Autowired
|
||||
ProcessTaskRelationMapper processTaskRelationMapper;
|
||||
private ProcessTaskRelationMapper processTaskRelationMapper;
|
||||
|
||||
/**
|
||||
* insert
|
||||
|
@ -24,12 +24,19 @@ import java.util.Map;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
public class ProcessDefinitionDaoTest {
|
||||
final DataSource dataSource = getDataSource();
|
||||
DataSource dataSource;
|
||||
final ProcessDefinitionDao processDefinitionDao = new ProcessDefinitionDao();
|
||||
|
||||
@Before
|
||||
public void seuUp() {
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
dataSource = getDataSource();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryAllProcessDefinition() {
|
||||
//Map<Integer, String> processDefinitionJsonMap = processDefinitionDao.queryAllProcessDefinition(dataSource.getConnection());
|
||||
|
@ -19,7 +19,13 @@ package org.apache.dolphinscheduler.dao.upgrade;
|
||||
import org.junit.Test;
|
||||
|
||||
public class UpgradeDaoTest {
|
||||
PostgresqlUpgradeDao postgresqlUpgradeDao = PostgresqlUpgradeDao.getInstance();
|
||||
private PostgresqlUpgradeDao postgresqlUpgradeDao;
|
||||
|
||||
@Test
|
||||
public void setUp() {
|
||||
System.setProperty("spring.profiles.active", "h2");
|
||||
postgresqlUpgradeDao = PostgresqlUpgradeDao.getInstance();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQueryQueryAllOldWorkerGroup() throws Exception{
|
||||
|
@ -28,11 +28,11 @@ import org.apache.dolphinscheduler.server.master.dispatch.host.assign.HostWorker
|
||||
import org.apache.dolphinscheduler.server.master.dispatch.host.assign.LowerWeightRoundRobin;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import java.util.Optional;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.Executors;
|
||||
@ -175,9 +175,9 @@ public class LowerWeightHostManager extends CommonHostManager {
|
||||
return Optional.empty();
|
||||
}
|
||||
return Optional.of(
|
||||
new HostWeight(HostWorker.of(addr, heartBeat.getWorkerHostWeight(), workerGroup),
|
||||
heartBeat.getCpuUsage(), heartBeat.getMemoryUsage(), heartBeat.getLoadAverage(),
|
||||
heartBeat.getStartupTime()));
|
||||
new HostWeight(HostWorker.of(addr, heartBeat.getWorkerHostWeight(), workerGroup),
|
||||
heartBeat.getCpuUsage(), heartBeat.getMemoryUsage(), heartBeat.getLoadAverage(),
|
||||
heartBeat.getStartupTime()));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
|
||||
package org.apache.dolphinscheduler.service.quartz;
|
||||
|
||||
import static org.apache.dolphinscheduler.common.Constants.DATASOURCE_PROPERTIES;
|
||||
import static org.apache.dolphinscheduler.common.Constants.ORG_POSTGRESQL_DRIVER;
|
||||
import static org.apache.dolphinscheduler.common.Constants.ORG_QUARTZ_DATASOURCE_MYDS_CONNECTIONPROVIDER_CLASS;
|
||||
import static org.apache.dolphinscheduler.common.Constants.ORG_QUARTZ_JOBSTORE_ACQUIRETRIGGERSWITHINLOCK;
|
||||
@ -150,7 +149,6 @@ public class QuartzExecutors {
|
||||
*/
|
||||
private void init() {
|
||||
try {
|
||||
PropertyUtils.loadPropertyFile(DATASOURCE_PROPERTIES);
|
||||
StdSchedulerFactory schedulerFactory = new StdSchedulerFactory();
|
||||
Properties properties = new Properties();
|
||||
|
||||
|
@ -17,45 +17,28 @@
|
||||
|
||||
package org.apache.dolphinscheduler.server;
|
||||
|
||||
import static org.apache.dolphinscheduler.common.Constants.SPRING_DATASOURCE_DRIVER_CLASS_NAME;
|
||||
import static org.apache.dolphinscheduler.common.Constants.SPRING_DATASOURCE_PASSWORD;
|
||||
import static org.apache.dolphinscheduler.common.Constants.SPRING_DATASOURCE_URL;
|
||||
import static org.apache.dolphinscheduler.common.Constants.SPRING_DATASOURCE_USERNAME;
|
||||
|
||||
import org.apache.dolphinscheduler.alert.AlertServer;
|
||||
import org.apache.dolphinscheduler.api.ApiApplicationServer;
|
||||
import org.apache.dolphinscheduler.common.utils.ScriptRunner;
|
||||
import org.apache.dolphinscheduler.dao.datasource.ConnectionFactory;
|
||||
import org.apache.dolphinscheduler.server.master.MasterServer;
|
||||
import org.apache.dolphinscheduler.server.worker.WorkerServer;
|
||||
|
||||
import org.apache.curator.test.TestingServer;
|
||||
|
||||
import java.io.FileReader;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.h2.tools.Server;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.builder.SpringApplicationBuilder;
|
||||
|
||||
@SpringBootApplication
|
||||
public class StandaloneServer {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(StandaloneServer.class);
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
Thread.currentThread().setName("Standalone-Server");
|
||||
|
||||
System.setProperty("spring.profiles.active", "api");
|
||||
|
||||
startDatabase();
|
||||
System.setProperty("spring.profiles.active", "api,h2");
|
||||
System.setProperty("spring.datasource.sql.schema", "file:./sql/dolphinscheduler_h2.sql");
|
||||
|
||||
startRegistry();
|
||||
|
||||
@ -88,27 +71,6 @@ public class StandaloneServer {
|
||||
System.setProperty("registry.servers", server.getConnectString());
|
||||
}
|
||||
|
||||
private static void startDatabase() throws IOException, SQLException {
|
||||
final Path temp = Files.createTempDirectory("dolphinscheduler_");
|
||||
LOGGER.info("H2 database directory: {}", temp);
|
||||
System.setProperty(
|
||||
SPRING_DATASOURCE_DRIVER_CLASS_NAME,
|
||||
org.h2.Driver.class.getName()
|
||||
);
|
||||
System.setProperty(
|
||||
SPRING_DATASOURCE_URL,
|
||||
String.format("jdbc:h2:tcp://localhost/%s;MODE=MySQL;DATABASE_TO_LOWER=true", temp.toAbsolutePath())
|
||||
);
|
||||
System.setProperty(SPRING_DATASOURCE_USERNAME, "sa");
|
||||
System.setProperty(SPRING_DATASOURCE_PASSWORD, "");
|
||||
|
||||
Server.createTcpServer("-ifNotExists", "-tcpDaemon").start();
|
||||
|
||||
final DataSource ds = ConnectionFactory.getInstance().getDataSource();
|
||||
final ScriptRunner runner = new ScriptRunner(ds.getConnection(), true, true);
|
||||
runner.runScript(new FileReader("sql/dolphinscheduler_h2.sql"));
|
||||
}
|
||||
|
||||
private static void setTaskPlugin() {
|
||||
final Path taskPluginPath = Paths.get(
|
||||
StandaloneServer.class.getProtectionDomain().getCodeSource().getLocation().getPath(),
|
||||
|
Loading…
Reference in New Issue
Block a user