Skip to content

A tool for automatically generating system-level test cases. Currently targeting REST APIs.

License

Notifications You must be signed in to change notification settings

jgaleotti/EvoMaster

 
 

Repository files navigation

EvoMaster: A Tool For Automatically Generating System-Level Test Cases

Maven Central javadoc Build Status CircleCI codecov

Summary

EvoMaster (www.evomaster.org) is a tool that automatically generates system-level test cases. Internally, it uses an Evolutionary Algorithm and Dynamic Program Analysis to be able to generate effective test cases. The approach is to evolve test cases from an initial population of random ones, trying to maximize measures like code coverage and fault detection.

Key features:

  • At the moment, EvoMaster targets RESTful APIs compiled to JVM 8 and 11 bytecode. Might work on other JVM versions, but we provide NO support for it.

  • The APIs must provide a schema in OpenAPI/Swagger format (either v2 or v3).

  • The tool generates JUnit (version 4 or 5) tests, written in either Java or Kotlin.

  • Fault detection: EvoMaster can generate tests cases that reveal faults/bugs in the tested applications. Different heuristics are employed, like checking for 500 status codes and mismatches from the API schemas.

  • Self-contained tests: the generated tests do start/stop the application, binding to an ephemeral port. This means that the generated tests can be used for regression testing (e.g., added to the Git repository of the application, and run with any build tool such as Maven and Gradle).

  • Advanced whitebox heuristics: EvoMaster analyses the bytecode of the tested applications, and uses several heuristics such as testability transformations and taint analysis to be able to generate more effective test cases.

  • SQL handling: EvoMaster can intercept and analyse all communications done with SQL databases, and use such information to generate higher code coverage test cases. Furthermore, it can generate data directly into the databases, and have such initialization automatically added in the generated tests. At the moment, EvoMaster supports H2 and Postgres databases.

  • Blackbox testing mode: can run on any API (regardless of its programming language), as long as an OpenAPI schema is provided. However, results will be worse than whitebox testing (e.g., due to lack of bytecode analysis).

  • Authentication: we support auth based on authentication headers and cookies. However, at the moment we do not support OAuth.

Known limitations:

  • To be used for whitebox testing, users need to write a driver manually. We recommend to try blackbox mode first (should just need a few minutes to get it up and running) to get an idea of what EvoMaster can do for you.

  • Execution time: to get good results, you might need to run the search for several hours. We recommend to first try the search for 10 minutes, just to get an idea of what type of tests can be generated. But, then, you should run EvoMaster for something like between 1 and 24 hours (the longer the better, but it is unlikely to get better results after 24 hours).

  • External services (e.g., other RESTful APIs): currently there is no support for them (e.g., to automatically mock them). It is work in progress.

  • NoSQL databases (e.g., MongoDB): currently no support. It is work in progress.

  • Failing tests: the tests generated by EvoMaster should all pass, and not fail, even when they detect a fault. In those cases, comments/test-names would point out that a test is revealing a possible fault, while still passing. However, in some cases the generated tests might fail. This is due to the so called flaky tests, e.g., when a test has assertions based on the time clock (e.g., dates and timestamps). There is ongoing effort to address this problem, but it is still not fully solved.

Videos

Hiring

Each year we usually have funding for postdoc and PhD student positions to work on this project (in Oslo, Norway). For more details on current vacancies, see our group page at AISE Lab.

Documentation

Funding

EvoMaster has been funded by:

  • 2020-2025: a 2 million Euro grant by the European Research Council (ERC), as part of the ERC Consolidator project Using Evolutionary Algorithms to Understand and Secure Web/Enterprise Systems.
  • 2018-2021: a 7.8 million Norwegian Kroner grant by the Research Council of Norway (RCN), as part of the Frinatek project Evolutionary Enterprise Testing.

License

EvoMaster's source code is released under the LGPL (v3) license. For a list of the used third-party libraries, you can directly see the root pom.xml file. For a list of code directly imported (and then possibly modified/updated) from other open-source projects, see here.

YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.

About

A tool for automatically generating system-level test cases. Currently targeting REST APIs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 58.4%
  • Java 35.1%
  • TypeScript 3.7%
  • TSQL 0.9%
  • JavaScript 0.6%
  • Python 0.6%
  • Other 0.7%