12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package quartz;
- import java.lang.reflect.InvocationTargetException;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.concurrent.TimeUnit;
- import org.junit.Test;
- import org.junit.runner.RunWith;
- import org.quartz.SchedulerException;
- import org.springframework.test.context.ContextConfiguration;
- import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
- import com.xxl.quartz.DynamicSchedulerUtil;
- import com.xxl.service.job.TestDynamicJob;
- @RunWith(SpringJUnit4ClassRunner.class)
- @ContextConfiguration(locations = "classpath*:applicationcontext-*.xml")
- public class JunitTest {
-
- @Test
- public void getJobKeys() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- List<Map<String, Object>> list = DynamicSchedulerUtil.getJobList();
- System.out.println(list);
- TimeUnit.SECONDS.sleep(30);
- }
-
- @Test
- public void addJob() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- Map<String, Object> jobData = new HashMap<String, Object>();
- jobData.put(DynamicSchedulerUtil.job_desc, "测试调度03");
- boolean ret = DynamicSchedulerUtil.addJob("demo-job04", "0/4 * * * * ?", TestDynamicJob.class, jobData);
- System.out.println(ret);
- TimeUnit.SECONDS.sleep(3);
- }
-
- @Test
- public void removeJob() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- boolean ret = DynamicSchedulerUtil.removeJob("demo-job02");
- System.out.println(ret);
- TimeUnit.SECONDS.sleep(30);
- }
-
- @Test
- public void rescheduleJob() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- boolean ret = DynamicSchedulerUtil.rescheduleJob("demo-job02", "0/3 * * * * ?");
- System.out.println(ret);
- TimeUnit.SECONDS.sleep(30);
- }
-
- @Test
- public void pauseJob() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- boolean ret = DynamicSchedulerUtil.pauseJob("demo-job02");
- System.out.println(ret);
- TimeUnit.SECONDS.sleep(30);
- }
-
- @Test
- public void resumeTrigger() throws SchedulerException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, InterruptedException {
- boolean ret = DynamicSchedulerUtil.resumeJob("demo-job02");
- System.out.println(ret);
- TimeUnit.SECONDS.sleep(30);
- }
-
-
- }
|