Browse Source

extends BaseTaskQueueTest get zkServer

pull/2/head
lilin 5 years ago
parent
commit
f98a5ddbd0
  1. 10
      dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/queue/TaskQueueZKImplTest.java

10
dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/queue/TaskQueueZKImplTest.java

@ -19,8 +19,6 @@ package org.apache.dolphinscheduler.common.queue;
import org.apache.dolphinscheduler.common.Constants; import org.apache.dolphinscheduler.common.Constants;
import org.apache.dolphinscheduler.common.utils.IpUtils; import org.apache.dolphinscheduler.common.utils.IpUtils;
import org.apache.dolphinscheduler.common.utils.OSUtils; import org.apache.dolphinscheduler.common.utils.OSUtils;
import org.apache.dolphinscheduler.common.zk.ZKServer;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore; import org.junit.Ignore;
@ -34,16 +32,14 @@ import static org.junit.Assert.*;
/** /**
* task queue test * task queue test
*/ */
public class TaskQueueZKImplTest { public class TaskQueueZKImplTest extends BaseTaskQueueTest {
private ITaskQueue tasksQueue = null;
@Before @Before
public void before(){ public void before(){
ZKServer.start();
tasksQueue = TaskQueueFactory.getTaskQueueInstance();
//clear all data //clear all data
tasksQueue.delete(); tasksQueue.delete();
} }
@ -52,10 +48,8 @@ public class TaskQueueZKImplTest {
public void after(){ public void after(){
//clear all data //clear all data
tasksQueue.delete(); tasksQueue.delete();
ZKServer.stop();
} }
/** /**
* test take out all the elements * test take out all the elements
*/ */

Loading…
Cancel
Save