Coder Social home page Coder Social logo

Comments (3)

kingsleyh avatar kingsleyh commented on August 18, 2024

Hi - thanks for raising this - I will fix this also in the next release

On 18 Apr 2013, at 13:27, fdegrigny [email protected] wrote:

If there is a "status":"pending" in the JSON file, yhis make the parser crash with this following NPE (and the report generation fails) :
java.lang.NullPointerException
at net.masterthought.cucumber.json.Step$predicates$1.matches(Step.java:171)
at net.masterthought.cucumber.json.Step$predicates$1.matches(Step.java:168)
at com.googlecode.totallylazy.iterators.FilterIterator.getNext(FilterIterator.java:20)
at com.googlecode.totallylazy.iterators.StatefulIterator.hasNext(StatefulIterator.java:23)
at com.googlecode.totallylazy.Iterators.size(Iterators.java:347)
at com.googlecode.totallylazy.Sequences.size(Sequences.java:384)
at com.googlecode.totallylazy.Sequence.size(Sequence.java:245)
at net.masterthought.cucumber.json.Element.getStatus(Element.java:36)
at net.masterthought.cucumber.ReportInformation.processFeatures(ReportInformation.java:225)
at net.masterthought.cucumber.ReportInformation.(ReportInformation.java:41)
at net.masterthought.cucumber.ReportBuilder.(ReportBuilder.java:39)
at net.masterthought.cucumber.CucumberReportGeneratorMojo.execute(CucumberReportGeneratorMojo.java:61)
... 21 more

The expected behavior is to deal this "pending" status like the "undefined" one.
(If we replace manually all the "prending" status by "undefined" ones : the generation is OK)

Regards.


Reply to this email directly or view it on GitHub.

from cucumber-reporting.

fdegrigny avatar fdegrigny commented on August 18, 2024

You're welcome.
Waiting the next release, there is a workaround using AntRun Maven goal :
<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <version>1.7</version>
  <executions>
    <execution>
      <id>filter-json-status</id>
      <phase>post-integration-test</phase>
      <goals>
        <goal>run</goal>
      </goals>
      <configuration>
        <target>
          <!-- filter the JSON report : hack for a maven-cucumber-reporting bug ! -->
          <!-- (Its parser doesn't recognize the 'pending' status yet) -->
          <replace file="${project.build.directory}/cucumber.json">
            <replacetoken><![CDATA["status":"pending"]]></replacetoken>
            <replacevalue><![CDATA["status":"undefined"]]></replacevalue>
          </replace>
        </target>
      </configuration>
    </execution>
  </executions>
</plugin>

from cucumber-reporting.

kingsleyh avatar kingsleyh commented on August 18, 2024

fixed in pending release

from cucumber-reporting.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.