ExecutionTaskServiceTest.java 1018 B

123456789101112131415161718192021222324252627
  1. // package com.tzld.piaoquan.sde;
  2. //
  3. //
  4. // import com.alibaba.fastjson.JSON;
  5. // import com.tzld.piaoquan.sde.model.dto.task.XxlJobParamDto;
  6. // import com.tzld.piaoquan.sde.service.ExecutionTaskService;
  7. // import org.junit.jupiter.api.Test;
  8. // import org.springframework.beans.factory.annotation.Autowired;
  9. //
  10. // public class ExecutionTaskServiceTest extends BaseTest {
  11. //
  12. // @Autowired
  13. // private ExecutionTaskService executionTaskService;
  14. //
  15. // @Test
  16. // public void videoClusterExecutionTaskCreateHandlerTest() {
  17. // XxlJobParamDto xxlJobParamDto = new XxlJobParamDto();
  18. // xxlJobParamDto.setTable("loghubods.supply_video_deconstruction");
  19. // xxlJobParamDto.setContentScope("top20_cate_top200_exp14d_top50_vov14d");
  20. // executionTaskService.videoClusterExecutionTaskCreateHandler(JSON.toJSONString(xxlJobParamDto));
  21. // }
  22. //
  23. // @Test
  24. // public void executionTaskSubmitHandlerTest() {
  25. // executionTaskService.executionTaskSubmitHandler();
  26. // }
  27. // }