Как запустить tomcat перед запуском интеграционного теста? - PullRequest
3 голосов
/ 17 января 2012

Я пытаюсь запустить интеграционный тест в отдельном профиле Maven, поэтому мне нужно сделать это в следующие шаги:

  1. Запустите сервер Tomcat.
  2. Запустить Selenium server.
  3. Запуск интеграционных тестов.

Я запускаю интеграционный тест следующим образом:

mvn install -Pit

но что происходит, так это то, что тест интеграции запускается перед запуском сервера, что приведет к сбою теста, вот моя конфигурация:

<profile>
          <id>it</id>
          <build>
           <plugins>


        <plugin>

            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <version>1.1.4</version>
            <configuration>

                <wait>false</wait> 
                <container>
                 <containerId>tomcat7x</containerId>
                 <home>${env.CATALINA_HOME}</home>  
                 <timeout>300000</timeout>                  
                </container>

                <configuration>
                 <type>standalone</type>
                 <home>target/tomcat7x</home> 
                 <properties>
                  <cargo.jvmargs>-XX:PermSize=256m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled</cargo.jvmargs>
                </properties> 
                </configuration>



            </configuration>
                <executions>
                    <execution>
                    <id>start-container</id>
                    <phase>pre-integration-test</phase>
                        <goals>
                            <goal>start</goal>
                            <goal>deploy</goal>
                        </goals>
                    </execution>
                    <execution>
                    <id>stop-container</id>
                    <phase>post-integration-test</phase>
                        <goals>
                            <goal>stop</goal>
                        </goals>
                    </execution>
                </executions>
          </plugin> 



        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>selenium-maven-plugin</artifactId>
              <executions>
                    <execution>
                    <id>start</id>
                    <phase>pre-integration-test</phase>
                        <goals>
                            <goal>start-server</goal>
                        </goals>
                    <configuration>
                        <background>true</background>
                        <logOutput>true</logOutput>
                    </configuration>
                </execution>

                <execution>
                <id>stop</id>
                <phase>post-integration-test</phase>
                        <goals>
                            <goal>stop-server</goal>
                        </goals>
                </execution> 
            </executions>
    </plugin>


             <plugin>

                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.8</version>

                <configuration>
                    <junitArtifactName>
                    org.junit:com.springsource.org.junit
                    </junitArtifactName>
                    <excludes>

                        <exclude>**/unit/*Test.java</exclude>
                    </excludes>
                </configuration>


                <executions>
                    <execution>

                    <id>integration-tests</id>
                    <phase>integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    <configuration>
                    <skip>false</skip>
                    <excludes>
                        <exclude>none</exclude>
                    </excludes>

                    <includes>
                       <include>**/integration/*Test.java</include>
                    </includes>
                    </configuration>
                    </execution>
            </executions>

                </plugin>
              </plugins>
            </build>

            <activation>
              <property>
                <name>it</name>
              </property>
            </activation>

        </profile>

пожалуйста, сообщите, что не так с моей конфигурацией.

ОБНОВЛЕНИЕ : журналы Maven

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building My APP
[INFO]    task-segment: [install]
[INFO] ------------------------------------------------------------------------
[INFO] [jaxws:wsimport {execution: default}]
[debug] execute contextualize
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 7 resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
[debug] execute contextualize
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 5 resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [surefire:test {execution: default-test}]
[INFO] Surefire report directory: C:\Workspace\MyAPP\target\surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running integration.MyTest

Update3

все работало нормально после удаления, заменяя старый плагин surefire следующим:

<plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <executions>

                    <execution>
                        <id>default-test</id>                                
                        <configuration>
                            <skipTests>true</skipTests>
                        </configuration>
                    </execution>

                    <execution>
                        <id>surefire-it</id>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                        <configuration>
                            <includes>
                                <include>**/integration/*Test.java</include>
                            </includes>
                            <skipTests>false</skipTests>
                        </configuration>
                    </execution>
                </executions>
                <configuration>
                    <argLine>-Xms256M -Xmx768M -XX:MaxPermSize=256M</argLine>
                </configuration>
            </plugin>

НО есть проблема с грузовым плагином, заключается в том, что он развертывает файл war, затем запускает интеграционное тестирование, и перед вызовом любого метода тестирования он развертывает файл war ??

1 Ответ

2 голосов
/ 17 января 2012

Исходя из журнала, очевидно, что сбой вызван тем, что верный прогон выполняет интеграционное тестирование в фазе test, а не в фазе integration-test.

Эта ссылка говорит о том, как использовать верный только для интеграционного тестирования.

Эта документация дает более подробную информацию о передовых методах тестирования maven и интеграции.

...