Skip to content

Repository files navigation

utPLSQL v3 | Powerful PL/SQL Unit Testing Framework

latest-releaselicensechattwitter

buildbuildsonarCoveralls coverage


utPLSQL version 3 is a complete rewrite of utPLSQL v2 from scratch. Version 2 still supports older versions of Oracle that are no longer available. The community that had developed on GitHub decided that a new internal architecture was needed, from that version 3 was born.

Introduction

utPLSQL is a Unit Testing framework for Oracle PL/SQL and SQL. The framework follows industry standards and best patterns of modern Unit Testing frameworks like JUnit and RSpec

Key features

  • multiple ways to compare data with matchers
  • native comparison of complex types (objects/collections/cursors)
  • in-depth and consistent reporting of failures and errors for tests
  • tests identified and configured by annotations
  • hierarchies of test suites configured with annotations
  • automatic (configurable) transaction control
  • Build-in coverage reporting
  • Integration with SonarQube, Coveralls, Jenkins and Teamcity with reporters
  • plugin architecture for reporters and matchers
  • flexible and simple test invocation
  • multi-reporting from test-run from command line

Requirements:

Download

Published releases are available for download on the utPLSQL GitHub Releases Page.

Documentation

Full documentation of the project is automatically published on utPLSQL github pages

Cheat-sheet

Installation

To install the utPLSQL into a new database schema and grant it to public, execute the script install_headless.sql. This will create a new user UT3, grant all required privileges to that user and create PUBLIC synonyms needed.

For detailed instructions on other install options see the Install Guide

Running tests

To execute using development IDE (TOAD/SQLDeveloper/PLSQLDeveloper/other) use one of following commands.

beginut.run();
end;
/
exec ut.run();
select*from table(ut.run());

The above commands will run all the suites in the current schema and provide report to dbms_output or as a select statement.

Command line clients

To have more control over how the tests are invoked, use one of the utPLSQL command line clients: utPLSQL-sql-cli or utPLSQL-cli.

To use utPLSQL-sql-cli you will need to have SQLPlus installed. utPLSQL-cli is Java project, so no additional software is needed.

Amongst many benefits they provide ability to:

  • see the progress of test execution for long-running tests - real-time reporting
  • use many reporting formats simultaneously and save reports to files (publish)
  • map your project source files and test files into database objects

Example unit test packages

For examples of using Continuous Integration Server & SonarCloud with utPLSQL see the utPLSQL demo project.

The below test package is a fully-functional Unit Test package for testing a betwnstr function. The package specification is annotated with special comments. The annotations define that a package is a unit test suite, they also allow defining a description for the suite as well as the test itself. The package body consists of procedures containing unit test code. To validate an expectation in test, use ut.expect( actual_data ).to_( ... ) syntax.

create or replace package test_between_string as-- %suite(Between string function)-- %test(Returns substring from start position to end position)
procedure normal_case;
-- %test(Returns substring when start position is zero)
procedure zero_start_position;
-- %test(Returns string until end if end position is greater than string length)
procedure big_end_position;
-- %test(Returns null for null input string value)
procedure null_string;
end;
/
create or replace package body test_between_string as
procedure normal_case is
beginut.expect( betwnstr( '1234567', 2, 5 ) ).to_( equal('2345') );
end;
procedure zero_start_position is
beginut.expect( betwnstr( '1234567', 0, 5 ) ).to_( equal('12345') );
end;
procedure big_end_position is
beginut.expect( betwnstr( '1234567', 0, 500 ) ).to_( equal('1234567') );
end;
procedure null_string is
beginut.expect( betwnstr( null, 2, 5 ) ).to_( be_null );
end;
end;
/

Outputs from running the above tests

Between string function
Returns substring from start position to end position
Returns substring when start position is zero
Returns string until end if end position is greater than string length
Returns null for null input string value
Finished in .036027 seconds
4 tests, 0 failures

Contributing to the project

We welcome new developers to join our community and contribute to the utPLSQL project. If you are interested in helping please read our guide to contributing The best place to start is to read the documentation and get familiar with the existing code base. A slack chat is the place to go if you want to talk with team members. To sign up to the chat use this link


Authors


Version 2 to Version 3 Comparison

If you have a great feature in mind, that you would like to see in utPLSQL v3 please create an issue on GitHub or discuss it with us in the Slack chat rooms.

FeatureVersion 2Version 3
Easy to installYesYes
DocumentationYesYes
LicenseGPL v2Apache 2.0
Tests Creation
Declarative test configurationNoYes - Annotations1
Tests as PackagesYesYes
Multiple Tests in a single PackageYesYes
Optional Setup/TeardownNoYes
Different Setup/Teardown
For Each Test in a Single Package
NoYes - Annotations1
Suite Definition StorageTablesPackage - Annotations1
Multiple SuitesYesYes
Suites can contain SuitesNoYes
Automatic Test detectionNoYes - Annotations1
Unconstrained naming of Test packagesNo - prefixesYes - name not relevant
Require Prefix on Test proceduresNo - prefixesYes - name not relevant
Auto Compilation of TestsYesNo (Let us know if you use this)
Assertion Library30 assertions226 matchers (13 + 13 negated)
Extendable assertionsNoYes - custom matchers
PLSQL Record Assertionsgenerated code through utRecEq Packagepossible on Oracle 12c using cursor matchers
Test Skeleton GenerationYesNo (Let us know if you use this)
Test Execution3
Single Test Package ExecutionYesYes
Single Test Procedure ExecutionNoYes
Test Suite ExecutionYesYes
Subset of Suite ExecutionNoYes
Multiple Suite ExecutionNoYes
Organizing Suites into hierarchiesNoYes
Code Coverage ReportingNoYes
Html Coverage ReportNoYes
Sonar XML Coverage ReportNoYes
Coveralls Json Coverage ReportNoYes
Framework Transaction ControlNoYes - Annotations1
Test Output
Real-time test execution progress reportingNoYes
Multiple Output Reporters can be used during test executionNoYes
DBMS_OUTPUTYesYes (clean formatting)
FileYes (to db server only)Yes (on client side)
Stored in TableYesNo (can be added as custom reporter)
XUnit format supportNoYes
HTML FormatYesNo
Custom Output reporterYes-needs configurationYes - no config needed

1 Annotations are specially formatted comments in your package specification. This enables declarative test configuration that is coupled with the source code. See Documentation for more details.

2utAssert2 package - Contains 59 Assertions - 2 Not implemented = 57, 28 are duplicated only change on outcome_in parameter 57-28 = 29, utPipe package - Contains 1 Assertion 29 + 1 = 30

3 Test execution comparison is in a single call so the results are combined. We know it was always possible to group in any way with multiple calls. But that may not be desired under a CI system where you want a single JUnit XML Output.


Project Directories

  • .travis - contains files needed for travis-ci integration
  • client_source - Sources to be used on the client-side. Developer workstation or CI platform to run the tests.
  • development - Set of useful scripts and utilities for development and debugging of utPLSQL
  • docs - Documentation of the project
  • examples - Example source code and unit tests
  • source - The installation code for utPLSQL
  • tests - Tests for utPLSQL framework

About

Ultimate PL/SQL Unit Testing Framework for Oracle

Resources

Contributing

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages