Java 类org.springframework.boot.cli.infrastructure.CommandLineInvoker.Invocation 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:JarCommandIT.java   
@Test
public void noArguments() throws Exception {
    Invocation invocation = this.cli.invoke("jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:JarCommandIT.java   
@Test
public void noSources() throws Exception {
    Invocation invocation = this.cli.invoke("jar", "test-app.jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:CommandLineIT.java   
@Test
public void hintProducesListOfValidCommands()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("hint");
    assertThat(cli.await(), equalTo(0));
    assertThat("Unexpected error: \n" + cli.getErrorOutput(),
            cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutputLines().size(), equalTo(11));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:CommandLineIT.java   
@Test
public void invokingWithNoArgumentsDisplaysHelp()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke();
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:CommandLineIT.java   
@Test
public void unrecognizedCommandsAreHandledGracefully()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("not-a-real-command");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput(),
            containsString("'not-a-real-command' is not a valid command"));
    assertThat(cli.getStandardOutput().length(), equalTo(0));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:CommandLineIT.java   
@Test
public void version() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("version");
    assertThat(cli.await(), equalTo(0));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("Spring CLI v"));
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:CommandLineIT.java   
@Test
public void help() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("help");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}
项目:spring-boot-concourse    文件:JarCommandIT.java   
@Test
public void noArguments() throws Exception {
    Invocation invocation = this.cli.invoke("jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:spring-boot-concourse    文件:JarCommandIT.java   
@Test
public void noSources() throws Exception {
    Invocation invocation = this.cli.invoke("jar", "test-app.jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:spring-boot-concourse    文件:CommandLineIT.java   
@Test
public void hintProducesListOfValidCommands()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("hint");
    assertThat(cli.await(), equalTo(0));
    assertThat("Unexpected error: \n" + cli.getErrorOutput(),
            cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutputLines().size(), equalTo(11));
}
项目:spring-boot-concourse    文件:CommandLineIT.java   
@Test
public void invokingWithNoArgumentsDisplaysHelp()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke();
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}
项目:spring-boot-concourse    文件:CommandLineIT.java   
@Test
public void unrecognizedCommandsAreHandledGracefully()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("not-a-real-command");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput(),
            containsString("'not-a-real-command' is not a valid command"));
    assertThat(cli.getStandardOutput().length(), equalTo(0));
}
项目:spring-boot-concourse    文件:CommandLineIT.java   
@Test
public void version() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("version");
    assertThat(cli.await(), equalTo(0));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("Spring CLI v"));
}
项目:spring-boot-concourse    文件:CommandLineIT.java   
@Test
public void help() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("help");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}
项目:contestparser    文件:JarCommandIT.java   
@Test
public void noArguments() throws Exception {
    Invocation invocation = this.cli.invoke("jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:contestparser    文件:JarCommandIT.java   
@Test
public void noSources() throws Exception {
    Invocation invocation = this.cli.invoke("jar", "test-app.jar");
    invocation.await();
    assertThat(invocation.getStandardOutput(), equalTo(""));
    assertThat(invocation.getErrorOutput(), containsString("The name of the "
            + "resulting jar and at least one source file must be specified"));
}
项目:contestparser    文件:CommandLineIT.java   
@Test
public void hintProducesListOfValidCommands()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("hint");
    assertThat(cli.await(), equalTo(0));
    assertThat("Unexpected error: \n" + cli.getErrorOutput(),
            cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutputLines().size(), equalTo(11));
}
项目:contestparser    文件:CommandLineIT.java   
@Test
public void invokingWithNoArgumentsDisplaysHelp()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke();
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}
项目:contestparser    文件:CommandLineIT.java   
@Test
public void unrecognizedCommandsAreHandledGracefully()
        throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("not-a-real-command");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput(),
            containsString("'not-a-real-command' is not a valid command"));
    assertThat(cli.getStandardOutput().length(), equalTo(0));
}
项目:contestparser    文件:CommandLineIT.java   
@Test
public void version() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("version");
    assertThat(cli.await(), equalTo(0));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("Spring CLI v"));
}
项目:contestparser    文件:CommandLineIT.java   
@Test
public void help() throws IOException, InterruptedException {
    Invocation cli = this.cli.invoke("help");
    assertThat(cli.await(), equalTo(1));
    assertThat(cli.getErrorOutput().length(), equalTo(0));
    assertThat(cli.getStandardOutput(), startsWith("usage:"));
}