mirror of https://github.com/alibaba/arthas.git
fix grep command --trim-end support
parent
ea3e25d790
commit
4c4fe5fc7e
@ -0,0 +1,69 @@
|
||||
package com.taobao.arthas.core.command.basic1000;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import com.taobao.middleware.cli.CLI;
|
||||
import com.taobao.middleware.cli.CommandLine;
|
||||
import com.taobao.middleware.cli.annotations.CLIConfigurator;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author hengyunabc 2019-10-31
|
||||
*
|
||||
*/
|
||||
public class GrepCommandTest {
|
||||
|
||||
private static CLI cli = null;
|
||||
|
||||
@Before
|
||||
public void before() {
|
||||
cli = CLIConfigurator.define(GrepCommand.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
List<String> args = Arrays.asList("-v", "ppp");
|
||||
GrepCommand grepCommand = new GrepCommand();
|
||||
CommandLine commandLine = cli.parse(args, true);
|
||||
|
||||
try {
|
||||
CLIConfigurator.inject(commandLine, grepCommand);
|
||||
} catch (Throwable e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
Assert.assertTrue(grepCommand.isInvertMatch());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test2() {
|
||||
List<String> args = Arrays.asList("--before-context=6", "ppp");
|
||||
GrepCommand grepCommand = new GrepCommand();
|
||||
CommandLine commandLine = cli.parse(args, true);
|
||||
|
||||
try {
|
||||
CLIConfigurator.inject(commandLine, grepCommand);
|
||||
} catch (Throwable e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
Assert.assertEquals(6, grepCommand.getBeforeLines());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test3() {
|
||||
List<String> args = Arrays.asList("--trim-end=false", "ppp");
|
||||
GrepCommand grepCommand = new GrepCommand();
|
||||
CommandLine commandLine = cli.parse(args, true);
|
||||
|
||||
try {
|
||||
CLIConfigurator.inject(commandLine, grepCommand);
|
||||
} catch (Throwable e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
Assert.assertFalse(grepCommand.isTrimEnd());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue