2015-05-14 23 views
5

kullanarak entegrasyon testleri gerçekleştirmiyor Bu sorunun bir kereden fazla sorulması gerektiğini biliyorum. Ama ben maven hata-güvenli eklenti kullanarak benim entegrasyon testleri çalıştırmak yapamıyorum.Maven, hata giderme eklentisi

mvn failsafe:integration-test failsafe:verify'u çalıştırdığımda tümleştirme testlerimi çalıştırır. Ancak, mvn verify çalıştırdığımda tümleştirme testlerim çalışmıyor.

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 

<groupId>com.bahadirakin</groupId> 
<artifactId>integration-tests</artifactId> 
<version>1.0-SNAPSHOT</version> 
<packaging>jar</packaging> 

<name>integration-tests</name> 
<url>http://maven.apache.org</url> 

<properties> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
</properties> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-failsafe-plugin</artifactId> 
      <version>2.18.1</version> 
      <configuration> 
       <executions> 
        <execution> 
         <goals> 
          <goal>integration-test</goal> 
          <goal>verify</goal> 
         </goals> 
        </execution> 
       </executions> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 

<dependencies> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>4.12</version> 
     <scope>test</scope> 
    </dependency> 
</dependencies> 
</project> 

bir entegrasyon testi

package com.bahadirakin.integration; 

import org.junit.Assert; 
import org.junit.Test; 

public class ServiceIT { 

    @Test 
    public void testFail() throws Exception { 
     Assert.fail(); 

    } 
} 

Eğer bunu başarısız bekliyoruz görebileceğiniz gibi.

Maven versiyonu

Apache Maven 3.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-11T23:58:10+03:00) 
Maven home: /usr/local/Cellar/maven/3.2.3/libexec 
Java version: 1.7.0_25, vendor: Oracle Corporation 
Java home:/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home/jre 
Default locale: en_US, platform encoding: UTF-8 
OS name: "mac os x", version: "10.10.3", arch: "x86_64", family: "mac" 

Güncelleme mvn clean verify -X çıkış link. BT sınar

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-failsafe-plugin</artifactId> 
      <version>2.18.1</version> 
      <executions> 
       <execution> 
        <goals> 
         <goal>integration-test</goal> 
         <goal>verify</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
    </plugins> 
</build> 
+0

bir dosya içine temiz verify' ve borusunun tam 'çıkışı MVN yapmak ve bir yere dosyayı göndermek için deneyebilir miyim .... – khmarbaise

+0

"mvn temiz doğrulamak -X" daha – cslysy

+0

yararlı olabilir @ cslysy [gist] 'e çıktıyı ekledim (https://gist.github.com/bhdrkn/7aea7046ff7c02947f36). – bhdrkn

cevap

16

yolu (yapılandırmaya etiketi olmadan) yapı bölümü değiştirin Bu komutu kullanarak tümleştirme testleri:

mvn test-compile failsafe:integration-test failsafe:verify 

Sadece çalıştırmak için testler olmadığını bildirdi! Yani şöyle Ben eklenti değişti ve işe yaradı:

<plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-failsafe-plugin</artifactId> 
       <version>2.20</version> 
       <configuration> 
        <useFile>false</useFile> 
        <includes> 
         <include>**/*IT.java</include> 
        </includes> 
       </configuration> 
       <executions> 
        <execution> 
         <id>failsafe-integration-tests</id> 
         <phase>integration-test</phase> 
         <goals> 
          <goal>integration-test</goal> 
          <goal>verify</goal> 
         </goals> 
        </execution> 
       </executions> 
      </plugin> 
+1

Böyle bir hata yapmak utanç verici. Çok teşekkürler, bir milyon yılda ama bu hatayı kabul edemiyorum. – bhdrkn

0

benim hata korumalı için bu yapılandırmayı vardı:

yaptılar
<plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-failsafe-plugin</artifactId> 
       <version>2.20</version> 
       <configuration> 
        <useFile>false</useFile> 
        <includes> 
         <include>**/*IT.java</include> 
        </includes> 
       </configuration> 
       <executions> 
        <execution> 
         <goals> 
          <goal>integration-test</goal> 
          <goal>verify</goal> 
         </goals> 
        </execution> 
       </executions> 
      </plugin> 

yayınlanmaz

0

benim Bahar Boot tabanlı POM yılında hiç projeme eklenmedi yüzden yanlışlıkla <pluginManagement> bölümüne yedekli eklentisi eklendi. olmalı:

<build> 
    </plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-failsafe-plugin</artifactId> 
      <executions> 
       <execution> 
        <phase>integration-test</phase> 
        <goals> 
         <goal>integration-test</goal> 
         <goal>verify</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
    </plugins> 
</build>