public void test_generateWithoutDatagenFile() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("noDatagenFile/noDatagenFile-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    mojo.execute();
  }
  public void test_generateWithoutInclude() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("withoutInclude/withoutInclude-pom.xml");
    Mojo mojo = lookupMojo("generate", util.getPomFile());

    mojo.execute();

    assertExist("./target/withoutInclude/server/resources/conf/role.xml");
    assertExist("./target/withoutInclude/server/resources/conf/castor-config.xml");

    String expected =
        "<?xml version='1.0' encoding='ISO-8859-1'?>"
            + "<database name='DirectUseDB' engine='sybase'>"
            + "    <driver class-name='com.sybase.jdbc2.jdbc.SybDataSource' url='jdbc:sybase:Tds:notUSED'/>"
            + "    <mapping href='Mapping.xml'/>"
            + "</database>";

    String actual =
        FileUtil.loadContent(
            toFile("./target/withoutInclude/server/resources/conf/castor-config.xml"));
    XmlUtil.assertEquals(expected, actual);

    List compileSourceRoots = util.getProject().getCompileSourceRoots();
    assertEquals(2, compileSourceRoots.size());
    assertPath("target/withoutInclude/server/java", compileSourceRoots.get(0));
    assertPath("target/withoutInclude/client/java", compileSourceRoots.get(1));
  }
  public void test_generateWithDatagenInclude() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("withDatagenInclude/withInclude-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    util.getProject().setFile(util.getPomFile());

    mojo.execute();

    assertExist("./target/withDatagenInclude/resources/conf/role.xml");
    assertExist("./target/withDatagenInclude/table/MY_REF.tab");
  }
  public void test_generateWithBadVMArgs() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("withVMArgs/withVMArgs-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    try {
      mojo.execute();
      fail();
    } catch (MojoExecutionException e) {
      // InvalidArgument
    }
  }
  public void test_generateWithInclude() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("withInclude/withInclude-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    try {
      mojo.execute();
    } catch (MojoExecutionException e) {;
    }

    assertExist("./target/withInclude/resources/conf/role.xml");
  }
  public void test_generateWithIncludeButNoVersion() throws Exception {
    MockUtil util =
        MockUtil.setupEnvironment("WithIncludeButNoVersion/WithIncludeButNoVersion-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    try {
      mojo.execute();
    } catch (MojoExecutionException e) {;
    }

    assertExist(
        "./target/localRepository/codjo-mad/codjo-mad-datagen/1.0/codjo-mad-datagen-1.0.xml");
  }
  public void test_generateWithoutInclude_noConfiguration() throws Exception {
    new DirectoryFixture("./target/withDatagenInclude").doTearDown();

    MockUtil util =
        MockUtil.setupEnvironment("withDatagenInclude/withInclude-noConfiguration-pom.xml");

    Mojo mojo = lookupMojo("generate", util.getPomFile());

    util.getProject().setFile(util.getPomFile());

    mojo.execute();

    assertNotExist("./target/withDatagenInclude/resources/conf/role.xml");
    assertExist("./target/withDatagenInclude/table/MY_REF.tab");

    //        List compileSourceRoots = util.getProject().getCompileSourceRoots();
    //        assertEquals(0, compileSourceRoots.size());
  }
  public void test_generateWithoutInclude_mysql() throws Exception {
    MockUtil util = MockUtil.setupEnvironment("withoutInclude/withoutInclude-mysql-pom.xml");
    Mojo mojo = lookupMojo("generate", util.getPomFile());

    mojo.execute();

    String expected =
        "<?xml version='1.0' encoding='ISO-8859-1'?>"
            + "<database name='DirectUseDB' engine='mysql'>"
            + "    <driver class-name='com.mysql.jdbc.Driver' url='jdbc:mysql://notUSED'/>"
            + "    <mapping href='Mapping.xml'/>"
            + "</database>";

    String actual =
        FileUtil.loadContent(
            toFile("./target/withoutInclude/server/resources/conf/castor-config.xml"));
    XmlUtil.assertEquals(expected, actual);
  }
예제 #9
0
 static List<ItisRecord> getKingdoms() {
   return MockUtil.getKingdoms();
 }
예제 #10
0
 static ItisRecord getByTSN(String tsn) {
   return MockUtil.makeRecordFromTsn(tsn);
 }