Skip to content

Test Data Coverage Evaluation: Full Predicate Coverage Rules and SQL Mutants to assess the coverage of the test data in relation to a query

License

Notifications You must be signed in to change notification settings

giis-uniovi/tdrules

Repository files navigation

Status Quality Gate Status Test Reports Test Reports (frames) Maven Central (bom) Nuget

TdRules - Test Data Coverage Evaluation

This repository contains a set of components to generate Full Predicate Coverage Rules and SQL Mutants to assess the coverage of the test data in relation to a query:

  • Generate the FPC Rules and SQL Mutants (TdRules Service).
  • Discover the data store schema from an open JDBC connection to a relational database.
  • Models to manipulate the rules (both FPC Rules or SQL Mutants) and the schema.
  • Available for Java 8 and higher, and .NET (netstandard 2.0).

NOTE: The name TdRules (Test Data Rules) is replacing the former SQLRules to enable generation of rules for data stores other than relational databases.

Quick Start

Example: To generate the FPC Rules for a query query that executes against a relational database that can be reached by an open JDBC Connection conn, you first get the data store schema model and then the rules model as follows:

Java
TdSchema schemaModel = new DbSchemaApi(conn).getDbSchema();
TdRules rulesModel = new TdRulesApi().getRules(schemaModel, query, "");
.NET
TdSchema schemaModel = new DbSchemaApi(conn).GetDbSchema();
TdRules rulesModel = new TdRulesApi().GetRules(schemaModel, query, "");
Other languages

You still can generate the API client to get the rules from other languages using the Open API Generator. The API description of TdRules can be found online here.

Contributing

See the general contribution policies and guidelines for giis-uniovi at CONTRIBUTING.md.

Modules currently available in this repo are:

  • tdrules-bom: The bill of materials of all TdRules components.
  • tdrules-client: Client api to generate FPC Rules and SQL Mutants.
  • tdrules-model: Models of the FPC Rules, SQL Mutants and the data store schema.
  • tdrules-client-rdb: Client api to generate the data store schema from a live JDBC connection.
  • tdrules-store-rdb: Core component used to discover the schema of relational databases.
  • tdrules-store-shared: Shared components for all data stores.
  • setup: A folder with the configuration of test database containers to use in your development environment.
  • net: A folder with the source of the .NET implementation.
flowchart TD
    client(client) --> model(model)
    clientrdb(client-rdb) --> model
    clientrdb --> storerdb(store-rdb)
    storerdb --> storeshared(store-shared)

To set-up the test database containers in a local development environment, see the setup folder.

  • The Java implementation of the relational database dependent modules has been tested with PostgreSQL, SQL Server and Oracle.
  • The .NET implementation has been tested with SQLServer.

Citing this work

FPC Rules and SQL Mutants:

  • Javier Tuya, Mª José Suárez-Cabal and Claudio de la Riva. Full predicate coverage for testing SQL database queries. Software Testing, Verification and Reliability, 20 (3) 237-288, September 2010.
  • Javier Tuya, Mª José Suárez-Cabal, Claudio de la Riva. Mutating database queries. Information and Software Technology, 49(4) 398-417, April 2007.

Using the rules to generate and reduce test databases:

  • J. Tuya, C. de la Riva, M.J. Suárez-Cabal, R. Blanco. Coverage-Aware Test Database Reduction. IEEE Transactions on Software Engineering, 42 (10) 941-959, October 2016.
  • M.J. Suárez-Cabal, C. de la Riva, J. Tuya, R. Blanco. Incremental test data generation for database queries. Automated Software Engineering, 24(4) 719-755, December 2017.

About

Test Data Coverage Evaluation: Full Predicate Coverage Rules and SQL Mutants to assess the coverage of the test data in relation to a query

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •