Browse Source

Update ShellCommandExecutorTest.java

update unit test
pull/3/MERGE
小清 3 years ago committed by GitHub
parent
commit
3cba3e803c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/shell/ShellCommandExecutorTest.java

14
dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/shell/ShellCommandExecutorTest.java

@ -175,33 +175,31 @@ public class ShellCommandExecutorTest {
} }
@Test @Test
public void testFindAppId(){ public void testFindAppId() {
Class<ShellCommandExecutor> shellCommandExecutorClass = ShellCommandExecutor.class; Class<ShellCommandExecutor> shellCommandExecutorClass = ShellCommandExecutor.class;
try{ try {
Object instance = shellCommandExecutorClass.newInstance(); Object instance = shellCommandExecutorClass.newInstance();
Method method = shellCommandExecutorClass.getDeclaredMethod("findAppId", new Class[]{String.class}); Method method = shellCommandExecutorClass.getDeclaredMethod("findAppId", new Class[]{String.class});
method.setAccessible(true); method.setAccessible(true);
Object[] arg1s = {"11111"}; Object[] arg1s = {"11111"};
ShellCommandExecutor result = (ShellCommandExecutor) method.invoke(instance, arg1s); ShellCommandExecutor result = (ShellCommandExecutor) method.invoke(instance, arg1s);
} } catch (Exception e) {
catch (Exception e){
logger.error(e.getMessage()); logger.error(e.getMessage());
} }
} }
@Test @Test
public void testConvertFile2List(){ public void testConvertFile2List() {
Class<AbstractCommandExecutor> shellCommandExecutorClass = AbstractCommandExecutor.class; Class<AbstractCommandExecutor> shellCommandExecutorClass = AbstractCommandExecutor.class;
try{ try {
Object instance = shellCommandExecutorClass.newInstance(); Object instance = shellCommandExecutorClass.newInstance();
Method method = shellCommandExecutorClass.getDeclaredMethod("convertFile2List", new Class[]{String.class}); Method method = shellCommandExecutorClass.getDeclaredMethod("convertFile2List", new Class[]{String.class});
method.setAccessible(true); method.setAccessible(true);
Object[] arg1s = {"/opt/1.txt"}; Object[] arg1s = {"/opt/1.txt"};
AbstractCommandExecutor result = (AbstractCommandExecutor) method.invoke(instance, arg1s); AbstractCommandExecutor result = (AbstractCommandExecutor) method.invoke(instance, arg1s);
} } catch (Exception e) {
catch (Exception e){
logger.error(e.getMessage()); logger.error(e.getMessage());
} }
} }

Loading…
Cancel
Save