Popularity
2.8
Declining
Activity
0.0
Stable
85
13
28

Description

The Java Concolic Unit Testing Engine (jCUTE) automatically generates unit tests for Java programs. Concolic execution combines randomized concrete execution with symbolic execution and automatic constraint solving. Symbolic execution allows jCUTE to discern inputs that lead down different execution paths; randomized concrete execution helps it overcome limitations of the constraint solver, like the inability to analyze system calls or solve general systems of non-linear integer equations. Through this combination, jCUTE is able to generate test cases that execute many different execution paths in real Java programs.

jCUTE supports multi-threaded programs. It can discover race conditions and deadlocks through systematic schedule exploration.

Code Quality Rank: L1
Programming language: Java
License: GNU General Public License v3.0 or later

jCUTE alternatives and similar libraries

Based on the "Formal Verification" category.
Alternatively, view jCUTE alternatives based on common mentions on social networks and blogs.

  • Checker Framework

    Pluggable type-checking for Java
  • Daikon

    Dynamic detection of likely invariants
  • Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
    Promo www.influxdata.com
    InfluxDB Logo
  • CATG

    3.0 0.0 L1 jCUTE VS CATG
    a concolic testing engine for Java
  • OpenJML

    This is the primary repository for the source code of the OpenJML project. The source code is licensed under GPLv2 because it derives from OpenJDK which is so licensed. The active issues list for OpenJML development is here and the wiki contains information relevant to development. Public documentation for users is at the project website:
  • JMLOK 2.0

    Tool for detecting and classifying nonconformances in Java/JML projects.
  • Java Path Finder (JPF)

    JVM formal verification tool containing a model checker and more. Created by NASA.
  • KeY

    The KeY System is a formal software development tool that aims to integrate design, implementation, formal specification, and formal verification of object-oriented software as seamlessly as possible. Uses JML for specification and symbolic execution for verification.
  • Krakatoa

    Krakatoa is a front-end of the Why platform for deductive program verification. Krakatoa deals with Java programs annotated in a variant of the Java Modeling Language (JML).
  • Java Modeling Language (JML)

    Behavioral interface specification language that can be used to specify the behavior of code modules. It combines the design by contract approach of Eiffel and the model-based specification approach of the Larch family of interface specification languages, with some elements of the refinement calculus. Used by several other verification tools.

Do you think we are missing an alternative of jCUTE or a related project?

Add another 'Formal Verification' Library

README

jCUTE

The Java Concolic Unit Testing Engine (jCUTE) automatically generates unit tests for Java programs. Concolic execution combines randomized concrete execution with symbolic execution and automatic constraint solving. Symbolic execution allows jCUTE to discern inputs that lead down different execution paths; randomized concrete execution helps it overcome limitations of the constraint solver, like the inability to analyze system calls or solve general systems of non-linear integer equations. Through this combination, jCUTE is able to generate test cases that execute many different execution paths in real Java programs.

jCUTE supports multi-threaded programs. It can discover race conditions and deadlocks through systematic schedule exploration.

Running

jCUTE requires an installed and working Java Development Kit (JDK) version 1.4 or later. It expects both java and javac to be in the PATH. To run jCUTE on a 32-bit system, simply download and unzip the binary distribution from the jCUTE homepage. To run jCUTE on a 64-bit system, you will have to build the distribution archive from the sources in this repository; see the instructions below.

  • On Linux, run the setup script. Then execute the jcutegui script.
  • On Windows, run the jcutegui.bat batch file.

The src/ directory contains a number of examples. See the script runtests to know how to run these examples.

Usage

  • jcutec is the instrumentor plus compiler script for distributed Java programs under test.
  • jcute is the script to concolically test the executable of the instrumented program under test.

Instrumentation

Command line: ./jcutec SOURCE_DIRECTORY MAIN_JAVA_FILE MAIN_JAVA_CLASS -sequential

  • SOURCE_DIRECTORY is the directory containing the sources of the Java program to be tested
  • MAIN_JAVA_FILE is the name of the Java source file containing the main function
  • MAIN_JAVA_CLASS is the name of the class of the Java source file containing the main function

For example, to compile and instrument the Demo example in the directory src/tests in the package tests, execute

./jcutec src/ src/dtests/DExample1.java dtests.DExample1 -sequential

Concolic Execution

Command line: ./jcute class -i iterations [-?] [-help] [-d DEPTH=0] [-s SEED] [-t DEBUG_LEVEL=0] [-m PATH_MODE=0] [-r] [-q] [-p] [-v] [-a] [-n ARGUMENT=0]

Options include:

  • -help, -?: Displays help information
  • -d <decimal integer>: Depth of search. Default is 0, which implies infinite depth
  • -s <decimal integer>: Seed for random number generator in case -r option is given. Default is current system time.
  • -t <decimal integer>: Various debug information and statistics. Default is 0 (no debug information printed).
    • 1: Print trace of instrumentation function call's entry and exit.
    • 2: Print info about instrumented function call inserted for concurrency.
    • 4: Print input map after reading from disk.
    • 8: Print history at every history change.
    • 16: Print symbolic state at every state change.
    • 32: Print path constraint whenever path constraint is updated.
    • 64: Print old and new history at the end of execution.
    • 128: Print old and new input map at the end of the execution.
    • 256: Print path constraint at the end of the execution.
    • 512: Print line number executed.
  • -m <decimal integer {0,1,2}>: Path selection. Default is 0.
    • 0: Next path (depends on history),
    • 1: Replay last execution,
    • 2: Start fresh execution without looking at any history.
  • -r: If specified, inputs are randomly initialized; else, inputs are set to 0. Objects are initialized to null in either cases.
  • -p: Random search strategy is invoked
  • -q: Record branch coverage information
  • -a: Turn off Optimal Distributed Search
  • -v: Verbose: logs inputs and trace of execution
  • -n <decimal integer>: Pass a single integer argument

For example, to test the Demo example run

./jcute dtests.DExample1 -i 100 -q

To see the statistics about branch coverage and runtime execute

java -classpath jcute.jar cute.concolic.BranchCoverage

Graphical User Interface

In the Graphical user Interface, try selecting the directory src/ and the Java program dtests/DExample1.java. Then "Compile" and "(Re)start" for testing. Click on a Run # to get the Input and Trace log.

Building

Instead of downloading the binary distribution archive, the archive can also be built from the sources in this repository.

Compiling the Constraint Solving Library on Linux

jCUTE uses the lp_solve linear programming library for constraint solving. It comes with pre-compiled 32-bit versions of this C library, which it accesses via the Java Native Interface (JNI). However, the library and the wrapper were compiled against old standard libraries (libstdc++5.so) that are no longer available on modern Linux systems. A potential solution for this is to install an old 32-bit Linux image into a virtual machine for running jCUTE in it. Another solution is to compile the libraries on one's system.

64-bit Systems

The lp_solve library compiles and appears to work fine on 64-bit systems.

Compiling lp_solve

Compiling the lp_solve Java Wrapper

  • Download the Java wrapper source code archive lp_solve_5.1_java.zip from http://optimum2.mii.lt/lp2jdk/
  • Unzip the archive into a temporary directory.
  • Change to the lib/linux/ directory and edit the file build:
    • Set the LPSOLVE_DIR variable to the path that contains lp_lib.h; this should be the lp_solve_5.1/ directory from above.
    • Tell the linker where to find liblpsolve51.so by adding the command line option -L/path/to/containing/dir/ to the second g++ invocation in the build file. Replace /path/to/containing/dir with the path containing liblpsolve51.so.
    • Set the JDK_DIR variable to your JDK root directory, for example /opt/java6/ on Arch Linux.
  • Run sh build to build liblpsolve51j.so.
  • Copy liblpsolve51j.so into the jCUTE root directory.

Compiling and Packaging jCUTE

Execute the package shell script in the project's root directory to build the jCUTE JAR file and the distribution archive: sh package.

License

The jCUTE software is NOT in the public domain. However, it is freely available without fee for education, research, and non-profit purposes as described in the complete [jCUTE license](LICENSE.txt). The third-party libraries used by jCUTE are licensed as described in their license files.

History

jCUTE was designed and implemented by Koushik Sen around 2006.


*Note that all licence references and agreements mentioned in the jCUTE README section above are relevant to that project's source code only.