4

I try to fasten Allure to my tests. I get started as documentation says (https://github.com/allure-framework/allure-core/wiki#getting-started) But there is an error I can not deal with: mvn site

[INFO] --- maven-site-plugin:3.0:site (default-site) @ oiakProject ---
[INFO] configuring report plugin ru.yandex.qatools.allure:allure-maven-      plugin:1.4.14
Downloading:     http://repo.maven.apache.org/maven2/ru/yandex/qatools/allure/allure
-maven-plugin/1.4.14/allure-maven-plugin-1.4.14.pom
[WARNING] The POM for ru.yandex.qatools.allure:allure-maven-  plugin:jar:1.4.14 is
missing, no dependency information available
[INFO] --------------------------------------------------------------------- ---
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site- plugin:3.0:si
te (default-site) on project oiakProject: failed to get report for   ru.yandex.qat
ools.allure:allure-maven-plugin: Plugin ru.yandex.qatools.allure:allure-maven-pl
ugin:1.4.14 or one of its dependencies could not be resolved: Failed to read art
ifact descriptor for ru.yandex.qatools.allure:allure-maven-plugin:jar:1.4.14: Co
uld not find artifact ru.yandex.qatools.allure:allure-maven-plugin:pom:1.4.14 in
central (http://repo.maven.apache.org/maven2) -> [Help 1]

Here is my pom.xml:

 <properties>
   <allure.version>1.4.14</allure.version>
   <aspectj.version>1.8.5</aspectj.version>
</properties>

  <dependencies> 
     <dependency>
        <groupId>ru.yandex.qatools.allure</groupId>
        <artifactId>allure-junit-adaptor</artifactId>
        <version>${allure.version}</version>
     </dependency>
  </dependencies>

<build>
  <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-compiler-plugin</artifactId>
       <version>3.3</version>
       <configuration>
         <source>1.8</source>
         <target>1.8</target>
       </configuration>
    </plugin>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.18.1</version>
        <configuration>
            <testFailureIgnore>false</testFailureIgnore>
            <argLine>
                -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar
            </argLine>
            <properties>
                <property>
                      <name>listener</name>
                    <value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
                  </property>
              </properties>
          </configuration>
          <dependencies>
              <dependency>
                  <groupId>org.aspectj</groupId>
                  <artifactId>aspectjweaver</artifactId>
                  <version>${aspectj.version}</version>
              </dependency>
          </dependencies>
      </plugin>

     <plugin>
           <groupId>org.eclipse.jetty</groupId>
           <artifactId>jetty-maven-plugin</artifactId>
           <version>9.2.10.v20150310</version>
           <configuration>
                <webAppSourceDirectory>${project.build.directory}/site/allure-maven-plugin</webAppSourceDirectory>
                <stopKey>stop</stopKey>
                <stopPort>1234</stopPort>
           </configuration>
    </plugin>
</plugins>
</build>

  <reporting>
        <excludeDefaults>true</excludeDefaults>
        <plugins>
        <plugin>
            <groupId>ru.yandex.qatools.allure</groupId>
            <artifactId>allure-maven-plugin</artifactId>
            <version>2.2</version>
        </plugin>
    </plugins>
</reporting>

Ksu
  • 83
  • 6
  • Does this example: https://github.com/allure-examples/allure-junit-example work for you? – vania-pooh Jun 24 '15 at 09:06
  • My Maven version is 3.0.5 but according to Allure Maven Plugin Installation it should be 3.1.1 or above, so I updated Maven to 3.2.5 and do the same-> another error appears. – Ksu Jun 24 '15 at 12:42
  • [ERROR] Plugin org.apache.maven.plugins:maven-site-plugin:3.3 or one of its depe ndencies could not be resolved: Failed to read artifact descriptor for org.apach e.maven.plugins:maven-site-plugin:jar:3.3: Could not transfer artifact org.apach e.maven.plugins:maven-site-plugin:pom:3.3 from/to central (https://repo.maven.ap ache.org/maven2): Connect to repo.maven.apache.org:443 [repo.maven.apache.org/18 5.31.17.215] failed: Connection timed out – Ksu Jun 24 '15 at 12:44
  • Anyway, does OUR example work for you? – vania-pooh Jun 24 '15 at 12:52
  • vania-pooh, I tried this example, and the 'mvn site' command gets me the same error as I posted. – Ksu Jun 24 '15 at 13:04
  • Strange, just retested with latest code version and it works. Do you have a custom settings.xml file for Maven? – vania-pooh Jun 24 '15 at 19:33
  • I found settings.xml here C:\Program Files\Apache Software Foundation\apache-maven-3.0.5\conf – Ksu Jun 25 '15 at 09:26
  • My settings.xml is too long to post here. P.S. Finally via allure-cli I got my report. – Ksu Jun 25 '15 at 09:32
  • use below version of junit allure adaptor version. It should resolve the issue. 1.4.0 – HarshEc Nov 09 '15 at 14:49

1 Answers1

0

This issue seems to be with Corporate Network Proxy. I'm also having same problem using Allure.

I tried setting up Git, clone repo from Github and was not able to do. I fixed that issue by setting in git config. References:

Would it be possible to set http(s) proxy configuration in Allure config file also?

My Batch file:

@echo off

echo "Copying Test Assemblies"

copy D:\GIT\QA.Selenium\QA.Selenium\bin\Debug\*.*  D:\Execute_NUNIT_ALLURE\TestAssemblies\ 

echo "Setting Assembly Directory"
set ASSEMBLIES_DIR=D:\Execute_NUNIT_ALLURE\TestAssemblies

echo "Setting NUnit3 Directory"
set NUNIT_HOME=D:\NUnit-3.0.0

echo "Setting Allure Directory"
set ALLURE_CLI_HOME=D:\allure-cli

echo "Setting JAVA_HOME"
set JAVA_HOME="C:\Program Files\Java\jdk1.8.0_65"

echo "Setting JRE_HOME"
set JRE_HOME="C:\Program Files\Java\jre1.8.0_65"

echo "Setting NUnit Test Output Directory"
set OUTPUT_DIR=D:\Execute_NUNIT_ALLURE\TestResults

echo "Setting Allure Report Directory"
set ALLURE_REPORT=D:\Execute_NUNIT_ALLURE\TestReports

echo "Executing NUnit Tests"
%NUNIT_HOME%\bin\nunit3-console %ASSEMBLIES_DIR%\QA.Selenium.dll /framework=net-4.0 

echo "Generating Allure Reports"
%JAVA_HOME%\bin\java -jar %ALLURE_CLI_HOME%\lib\allure-cli.jar report generate -v 2.1 %OUTPUT_DIR% -o %ALLURE_REPORT%

My Output:

D:\Execute_NUNIT_ALLURE>NUnit_Allure.bat
"Copying Test Assemblies"
D:\GIT\QA.Selenium\QA.Selenium\bin\Debug\AllureCSharpCommons.dll
....
D:\GIT\QA.Selenium\QA.Selenium\bin\Debug\log4net.dll 
D:\GIT\QA.Selenium\QA.Selenium\bin\Debug\WebDriver.xml
       16 file(s) copied.
"Setting Assembly Directory"
"Setting NUnit3 Directory"
"Setting Allure Directory"
"Setting JAVA_HOME"
"Setting JRE_HOME"
"Setting NUnit Test Output Directory"
"Setting Allure Report Directory"
"Executing NUnit Tests"
NUnit Console Runner 3.0.5797
Copyright (C) 2015 Charlie Poole

Runtime Environment
   OS Version: Microsoft Windows NT 6.1.7601 Service Pack 1
  CLR Version: 4.0.30319.18034

Test Files
    D:\Execute_NUNIT_ALLURE\TestAssemblies\QA.Selenium.dll

=> QA.Selenium.Test_Scripts.LoginTest
#. Test Case Start: Login
Test Step - Visit URL
Test Step - Verify Login Page appeared
....
Test Case End
=> QA.Selenium.Test_Scripts.LogoutTest
#. Test Case Start: Logout
Test Step - Click Logout Link
...
Test Case End

Run Settings
    RuntimeFramework: net-4.0
    WorkDirectory: D:\Execute_NUNIT_ALLURE
    NumberOfTestWorkers: 8

Test Run Summary
    Overall result: Passed
   Tests run: 2, Passed: 2, Errors: 0, Failures: 0, Inconclusive: 0
     Not run: 0, Invalid: 0, Ignored: 0, Explicit: 0, Skipped: 0
  Start time: 2015-12-02 07:40:54Z
    End time: 2015-12-02 07:42:03Z
    Duration: 68.520 seconds

Results (nunit3) saved as TestResult.xml
"Generating Allure Reports"
I/O exception (java.net.SocketException) caught when processing request: Connect
ion reset
Retrying request
I/O exception (java.net.SocketException) caught when processing request: Connect
ion reset
Retrying request
I/O exception (java.net.SocketException) caught when processing request: Connect
ion reset
Retrying request
org.eclipse.aether.collection.DependencyCollectionException: Failed to read arti
fact descriptor for ru.yandex.qatools.allure:allure-report-data:jar:2.1
Community
  • 1
  • 1