├── src ├── test │ ├── resources │ │ ├── unit-tests │ │ │ ├── sources_tests_parameters │ │ │ │ ├── srcs │ │ │ │ │ ├── file.pkb │ │ │ │ │ ├── foo.sql │ │ │ │ │ └── spec.pks │ │ │ │ ├── te │ │ │ │ │ └── st │ │ │ │ │ │ ├── foo.sql │ │ │ │ │ │ ├── file.pkb │ │ │ │ │ │ └── spec.pks │ │ │ │ └── pom.xml │ │ │ ├── sources_and_tests_parameter_have_not_directory_tag │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ └── plsql │ │ │ │ │ │ │ ├── f1.sql │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── f2.sql │ │ │ │ │ └── test │ │ │ │ │ │ └── plsql │ │ │ │ │ │ ├── f2.pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── f1.pkg │ │ │ │ │ │ └── f1.sql │ │ │ │ └── pom.xml │ │ │ ├── sources_and_tests_parameter_have_not_includes_tag │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── f1.sql │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ └── f2.sql │ │ │ │ │ └── test │ │ │ │ │ │ └── bar │ │ │ │ │ │ ├── f2.pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── f1.pkg │ │ │ │ │ │ └── f1.sql │ │ │ │ └── pom.xml │ │ │ ├── sources_and_tests_parameter_does_not_exist_but_default_directory_exists │ │ │ │ ├── src │ │ │ │ │ ├── main │ │ │ │ │ │ └── plsql │ │ │ │ │ │ │ ├── f1.sql │ │ │ │ │ │ │ └── f2.sql │ │ │ │ │ └── test │ │ │ │ │ │ └── plsql │ │ │ │ │ │ ├── f2.pkg │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── f1.pkg │ │ │ │ │ │ └── f1.sql │ │ │ │ └── pom.xml │ │ │ ├── default_reporter │ │ │ │ └── pom.xml │ │ │ ├── sources_and_tests_parameter_does_not_exist │ │ │ │ └── pom.xml │ │ │ ├── default_console_output_behaviour │ │ │ │ └── pom.xml │ │ │ ├── db_config_using_system_properties │ │ │ │ └── pom.xml │ │ │ ├── exclude_object_expr │ │ │ │ └── pom.xml │ │ │ ├── exclude_schema_expr │ │ │ │ └── pom.xml │ │ │ ├── include_object_expr │ │ │ │ └── pom.xml │ │ │ ├── include_schema_expr │ │ │ │ └── pom.xml │ │ │ ├── exclude_object │ │ │ │ └── pom.xml │ │ │ ├── include_object │ │ │ │ └── pom.xml │ │ │ ├── dbms_output │ │ │ │ └── pom.xml │ │ │ ├── ora_stuck_timeout │ │ │ │ └── pom.xml │ │ │ ├── invalid_sources_directory │ │ │ │ └── pom.xml │ │ │ ├── invalid_tests_directory │ │ │ │ └── pom.xml │ │ │ └── skip_utplsql_tests │ │ │ │ └── pom.xml │ │ └── junit-platform.properties │ ├── resources-its │ │ └── org │ │ │ └── utplsql │ │ │ └── maven │ │ │ └── plugin │ │ │ └── UtPlsqlMojoIT │ │ │ ├── exclude_object │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── exclude_object_expr │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── simple │ │ │ ├── scripts │ │ │ │ ├── sources │ │ │ │ │ ├── TO_TEST_ME.sql │ │ │ │ │ ├── APP.PKG_TEST_ME.pks │ │ │ │ │ └── APP.PKG_TEST_ME.pkb │ │ │ │ └── tests │ │ │ │ │ ├── APP.TEST_PKG_TEST_ME.pks │ │ │ │ │ └── APP.TEST_PKG_TEST_ME.pkb │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── ora_stuck_timeout │ │ │ ├── scripts │ │ │ │ ├── sources │ │ │ │ │ ├── TO_TEST_ME.sql │ │ │ │ │ ├── APP.PKG_TEST_ME.pks │ │ │ │ │ └── APP.PKG_TEST_ME.pkb │ │ │ │ └── tests │ │ │ │ │ ├── APP.TEST_PKG_TEST_ME.pks │ │ │ │ │ └── APP.TEST_PKG_TEST_ME.pkb │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── regex │ │ │ ├── scripts │ │ │ │ ├── sources │ │ │ │ │ └── app │ │ │ │ │ │ ├── tables │ │ │ │ │ │ └── TO_TEST_ME.sql │ │ │ │ │ │ └── packages │ │ │ │ │ │ ├── PKG_TEST_ME.pks │ │ │ │ │ │ └── PKG_TEST_ME.pkb │ │ │ │ └── test │ │ │ │ │ └── app │ │ │ │ │ └── packages │ │ │ │ │ ├── TEST_PKG_TEST_ME.pks │ │ │ │ │ └── TEST_PKG_TEST_ME.pkb │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── owner_param │ │ │ ├── scripts │ │ │ │ ├── sources │ │ │ │ │ └── foo │ │ │ │ │ │ ├── tables │ │ │ │ │ │ └── TO_TEST_ME.sql │ │ │ │ │ │ ├── packages │ │ │ │ │ │ └── PKG_TEST_ME.pks │ │ │ │ │ │ └── package_bodies │ │ │ │ │ │ └── PKG_TEST_ME.pkb │ │ │ │ └── test │ │ │ │ │ └── bar │ │ │ │ │ ├── packages │ │ │ │ │ └── TEST_PKG_TEST_ME.pks │ │ │ │ │ └── package_bodies │ │ │ │ │ └── TEST_PKG_TEST_ME.pkb │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── type_mapping │ │ │ ├── scripts │ │ │ │ ├── sources │ │ │ │ │ └── app │ │ │ │ │ │ ├── tables │ │ │ │ │ │ └── TO_TEST_ME.sql │ │ │ │ │ │ ├── packages │ │ │ │ │ │ └── PKG_TEST_ME.pks │ │ │ │ │ │ └── package_bodies │ │ │ │ │ │ └── PKG_TEST_ME.pkb │ │ │ │ └── test │ │ │ │ │ └── app │ │ │ │ │ ├── packages │ │ │ │ │ └── TEST_PKG_TEST_ME.pks │ │ │ │ │ └── package_bodies │ │ │ │ │ └── TEST_PKG_TEST_ME.pkb │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── coverage-sonar-report.xml │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── tags │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ └── sonar-test-report.xml │ │ │ ├── pom.xml │ │ │ └── scripts │ │ │ │ └── tests │ │ │ │ ├── APP.TEST_PKG_TEST_ME.pks │ │ │ │ └── APP.TEST_PKG_TEST_ME.pkb │ │ │ ├── include_object │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ ├── sonar-test-report.xml │ │ │ │ │ └── coverage-sonar-report.xml │ │ │ └── pom.xml │ │ │ ├── include_object_expr │ │ │ ├── expected-output │ │ │ │ └── utplsql │ │ │ │ │ └── sonar-test-report.xml │ │ │ └── pom.xml │ │ │ ├── minimalist │ │ │ └── pom.xml │ │ │ └── skip │ │ │ └── pom.xml │ └── java │ │ └── org │ │ └── utplsql │ │ └── maven │ │ └── plugin │ │ ├── util │ │ └── StringUtilTest.java │ │ ├── ReportChecker.java │ │ └── UtPlsqlMojoIT.java └── main │ └── java │ └── org │ └── utplsql │ └── maven │ └── plugin │ ├── io │ ├── ReporterAndReporterParameter.java │ ├── SqlFileScanner.java │ └── ReportWriter.java │ ├── util │ └── StringUtil.java │ └── model │ ├── CustomTypeMapping.java │ └── ReporterParameter.java ├── scripts ├── 0_start_db.sh ├── 1_install_utplsql.sh ├── sql │ ├── create_source_owner_objects.sql │ ├── create_tests_owner_objects.sql │ ├── create_app_objects.sql │ └── create_users.sql └── 2_install_demo_project.sh ├── .gitignore ├── .github └── workflows │ ├── release.yml │ └── build.yml ├── mvnw.cmd ├── mvnw ├── LICENSE └── pom.xml /src/test/resources/unit-tests/sources_tests_parameters/srcs/file.pkb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/srcs/foo.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/srcs/spec.pks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/te/st/foo.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/te/st/file.pkb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/te/st/spec.pks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/src/main/plsql/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/src/test/plsql/f2.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/src/main/foo/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/src/main/foo/foo/f2.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/src/test/bar/f2.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/src/test/bar/foo/f1.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/src/test/bar/foo/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/src/main/plsql/foo/f2.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/src/test/plsql/foo/f1.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/src/test/plsql/foo/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/0_start_db.sh: -------------------------------------------------------------------------------- 1 | docker run -d --name ora-utplsql -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-xe:21-slim 2 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/src/main/plsql/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/src/main/plsql/f2.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/src/test/plsql/f2.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/src/test/plsql/foo/f1.pkg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/src/test/plsql/foo/f1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.displayname.generator.default=org.junit.jupiter.api.DisplayNameGenerator$ReplaceUnderscores 2 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/TO_TEST_ME.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- This is a table used to demonstrate the UNIT test framework. 3 | -- 4 | CREATE TABLE TO_TEST_ME 5 | ( 6 | SNAME VARCHAR2(10) 7 | ) 8 | / 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/scripts/sources/TO_TEST_ME.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- This is a table used to demonstrate the UNIT test framework. 3 | -- 4 | CREATE TABLE TO_TEST_ME 5 | ( 6 | SNAME VARCHAR2(10) 7 | ) 8 | / 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/scripts/sources/app/tables/TO_TEST_ME.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- This is a table used to demonstrate the UNIT test framework. 3 | -- 4 | CREATE TABLE TO_TEST_ME 5 | ( 6 | SNAME VARCHAR2(10) 7 | ) 8 | / 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/tables/TO_TEST_ME.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- This is a table used to demonstrate the UNIT test framework. 3 | -- 4 | CREATE TABLE TO_TEST_ME 5 | ( 6 | SNAME VARCHAR2(10) 7 | ) 8 | / 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/scripts/sources/app/tables/TO_TEST_ME.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- This is a table used to demonstrate the UNIT test framework. 3 | -- 4 | CREATE TABLE TO_TEST_ME 5 | ( 6 | SNAME VARCHAR2(10) 7 | ) 8 | / 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/APP.PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | -- 2 | -- This package is used TO demonstrate the utPL/SQL possibilities 3 | -- 4 | CREATE OR REPLACE PACKAGE PKG_TEST_ME AS 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER; 6 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2); 7 | END PKG_TEST_ME; 8 | / -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/scripts/sources/APP.PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | -- 2 | -- This package is used TO demonstrate the utPL/SQL possibilities 3 | -- 4 | CREATE OR REPLACE PACKAGE PKG_TEST_ME AS 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER; 6 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2); 7 | END PKG_TEST_ME; 8 | / -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/scripts/sources/app/packages/PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | -- 2 | -- This package is used TO demonstrate the utPL/SQL possibilities 3 | -- 4 | CREATE OR REPLACE PACKAGE app.PKG_TEST_ME AS 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER; 6 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2); 7 | END PKG_TEST_ME; 8 | / -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/scripts/sources/app/packages/PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | -- 2 | -- This package is used TO demonstrate the utPL/SQL possibilities 3 | -- 4 | CREATE OR REPLACE PACKAGE app.PKG_TEST_ME AS 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER; 6 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2); 7 | END PKG_TEST_ME; 8 | / -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/packages/PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | -- 2 | -- This package is used TO demonstrate the utPL/SQL possibilities 3 | -- 4 | CREATE OR REPLACE PACKAGE CODE_OWNER.PKG_TEST_ME AS 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER; 6 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2); 7 | END PKG_TEST_ME; 8 | / -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Eclipse 2 | .classpath 3 | .project 4 | .settings/ 5 | 6 | # Intellij 7 | .idea/ 8 | *.iml 9 | *.iws 10 | 11 | # Mac 12 | .DS_Store 13 | 14 | # Bash 15 | *.swp 16 | 17 | # Maven 18 | log/ 19 | target/ 20 | .mvn 21 | log.txt 22 | **/pom.xml.versionsBackup 23 | dependency-reduced-pom.xml 24 | 25 | # Docs 26 | doc/ 27 | /utPLSQL/ 28 | /utPLSQL.zip 29 | /tree.txt 30 | -------------------------------------------------------------------------------- /scripts/1_install_utplsql.sh: -------------------------------------------------------------------------------- 1 | UTPLSQL_DOWNLOAD_URL=$(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip\"" | sed 's/"//g') 2 | 3 | curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip 4 | 5 | unzip -q utPLSQL.zip 6 | 7 | docker run --rm -v $(pwd)/utPLSQL:/utPLSQL -w /utPLSQL/source --network host \ 8 | --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@//127.0.0.1:1521/XE as sysdba @install_headless.sql UT3 UT3 users 9 | -------------------------------------------------------------------------------- /scripts/sql/create_source_owner_objects.sql: -------------------------------------------------------------------------------- 1 | whenever sqlerror exit failure rollback 2 | whenever oserror exit failure rollback 3 | 4 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/tables/TO_TEST_ME.sql 5 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/packages/PKG_TEST_ME.pks 6 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/package_bodies/PKG_TEST_ME.pkb 7 | -------------------------------------------------------------------------------- /scripts/sql/create_tests_owner_objects.sql: -------------------------------------------------------------------------------- 1 | whenever sqlerror exit failure rollback 2 | whenever oserror exit failure rollback 3 | 4 | create synonym TO_TEST_ME for CODE_OWNER.TO_TEST_ME; 5 | create synonym PKG_TEST_ME for CODE_OWNER.PKG_TEST_ME; 6 | 7 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/test/bar/packages/TEST_PKG_TEST_ME.pks 8 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/test/bar/package_bodies/TEST_PKG_TEST_ME.pkb 9 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /scripts/sql/create_app_objects.sql: -------------------------------------------------------------------------------- 1 | whenever sqlerror exit failure rollback 2 | whenever oserror exit failure rollback 3 | 4 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/TO_TEST_ME.sql 5 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/APP.PKG_TEST_ME.pks 6 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/APP.PKG_TEST_ME.pkb 7 | 8 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/tests/APP.TEST_PKG_TEST_ME.pks 9 | @src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/tests/APP.TEST_PKG_TEST_ME.pkb 10 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/sources/APP.PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY PKG_TEST_ME IS 2 | -- 3 | -- This 4 | -- 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER IS 6 | BEGIN 7 | IF PPARAM1 IS NULL THEN 8 | RETURN NULL; 9 | ELSIF PPARAM1 = '1' THEN 10 | RETURN 1; 11 | ELSE 12 | RETURN 0; 13 | END IF; 14 | END FC_TEST_ME; 15 | 16 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2) IS 17 | BEGIN 18 | IF PSNAME IS NULL THEN 19 | NULL; 20 | ELSE 21 | INSERT INTO TO_TEST_ME (SNAME) VALUES (PSNAME); 22 | COMMIT; 23 | END IF; 24 | END PR_TEST_ME; 25 | 26 | END PKG_TEST_ME; 27 | / 28 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/scripts/sources/APP.PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY PKG_TEST_ME IS 2 | -- 3 | -- This 4 | -- 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER IS 6 | BEGIN 7 | IF PPARAM1 IS NULL THEN 8 | RETURN NULL; 9 | ELSIF PPARAM1 = '1' THEN 10 | RETURN 1; 11 | ELSE 12 | RETURN 0; 13 | END IF; 14 | END FC_TEST_ME; 15 | 16 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2) IS 17 | BEGIN 18 | IF PSNAME IS NULL THEN 19 | NULL; 20 | ELSE 21 | INSERT INTO TO_TEST_ME (SNAME) VALUES (PSNAME); 22 | COMMIT; 23 | END IF; 24 | END PR_TEST_ME; 25 | 26 | END PKG_TEST_ME; 27 | / 28 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/scripts/sources/app/packages/PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY APP.PKG_TEST_ME IS 2 | -- 3 | -- This 4 | -- 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER IS 6 | BEGIN 7 | IF PPARAM1 IS NULL THEN 8 | RETURN NULL; 9 | ELSIF PPARAM1 = '1' THEN 10 | RETURN 1; 11 | ELSE 12 | RETURN 0; 13 | END IF; 14 | END FC_TEST_ME; 15 | 16 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2) IS 17 | BEGIN 18 | IF PSNAME IS NULL THEN 19 | NULL; 20 | ELSE 21 | INSERT INTO TO_TEST_ME (SNAME) VALUES (PSNAME); 22 | COMMIT; 23 | END IF; 24 | END PR_TEST_ME; 25 | 26 | END PKG_TEST_ME; 27 | / 28 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/scripts/sources/app/package_bodies/PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY APP.PKG_TEST_ME IS 2 | 3 | -- 4 | -- This 5 | -- 6 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER IS 7 | BEGIN 8 | IF PPARAM1 IS NULL THEN 9 | RETURN NULL; 10 | ELSIF PPARAM1 = '1' THEN 11 | RETURN 1; 12 | ELSE 13 | RETURN 0; 14 | END IF; 15 | END FC_TEST_ME; 16 | 17 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2) IS 18 | BEGIN 19 | IF PSNAME IS NULL THEN 20 | NULL; 21 | ELSE 22 | INSERT INTO TO_TEST_ME (SNAME) VALUES (PSNAME); 23 | COMMIT; 24 | END IF; 25 | END PR_TEST_ME; 26 | 27 | END PKG_TEST_ME; 28 | / -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/sources/foo/package_bodies/PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY CODE_OWNER.PKG_TEST_ME IS 2 | -- 3 | -- This 4 | -- 5 | FUNCTION FC_TEST_ME(PPARAM1 IN VARCHAR2) RETURN NUMBER IS 6 | BEGIN 7 | IF PPARAM1 IS NULL THEN 8 | RETURN NULL; 9 | ELSIF PPARAM1 = '1' THEN 10 | RETURN 1; 11 | ELSE 12 | RETURN 0; 13 | END IF; 14 | END FC_TEST_ME; 15 | 16 | PROCEDURE PR_TEST_ME(PSNAME IN VARCHAR2) IS 17 | BEGIN 18 | IF PSNAME IS NULL THEN 19 | NULL; 20 | ELSE 21 | INSERT INTO TO_TEST_ME (SNAME) VALUES (PSNAME); 22 | COMMIT; 23 | END IF; 24 | END PR_TEST_ME; 25 | 26 | END PKG_TEST_ME; 27 | / 28 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/expected-output/utplsql/sonar-test-report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /scripts/2_install_demo_project.sh: -------------------------------------------------------------------------------- 1 | docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ 2 | sys/oracle@//127.0.0.1:1521/XE as sysdba @scripts/sql/create_users.sql 3 | 4 | docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ 5 | app/pass@//127.0.0.1:1521/XE @scripts/sql/create_app_objects.sql 6 | 7 | docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ 8 | code_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_source_owner_objects.sql 9 | 10 | docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ 11 | tests_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_tests_owner_objects.sql 12 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/io/ReporterAndReporterParameter.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.io; 2 | 3 | import org.utplsql.api.reporter.Reporter; 4 | import org.utplsql.maven.plugin.model.ReporterParameter; 5 | 6 | public class ReporterAndReporterParameter { 7 | 8 | private final Reporter reporter; 9 | private final ReporterParameter reporterParameter; 10 | 11 | public ReporterAndReporterParameter(Reporter reporter, ReporterParameter reporterParameter) { 12 | this.reporter = reporter; 13 | this.reporterParameter = reporterParameter; 14 | } 15 | 16 | public Reporter getReporter() { 17 | return reporter; 18 | } 19 | 20 | public ReporterParameter getReporterParameter() { 21 | return reporterParameter; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/util/StringUtil.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.util; 2 | 3 | public class StringUtil { 4 | 5 | private StringUtil() { 6 | } 7 | 8 | public static boolean isEmpty(CharSequence cs) { 9 | return cs == null || cs.length() == 0; 10 | } 11 | 12 | public static boolean isNotEmpty(CharSequence cs) { 13 | return !isEmpty(cs); 14 | } 15 | 16 | public static boolean isBlank(CharSequence cs) { 17 | if (cs != null && cs.length() > 0) { 18 | for (int i = 0; i < cs.length(); ++i) { 19 | if (!Character.isWhitespace(cs.charAt(i))) { 20 | return false; 21 | } 22 | } 23 | } 24 | return true; 25 | } 26 | 27 | public static boolean isNotBlank(CharSequence cs) { 28 | return !isBlank(cs); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | minimalist 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/expected-output/utplsql/coverage-sonar-report.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/default_reporter/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | skip 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | true 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/model/CustomTypeMapping.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.model; 2 | 3 | /** 4 | * Bean used by Maven to populate its model. 5 | * 6 | * {@code 7 | * 8 | * ... 9 | * ... 10 | * 11 | * } 12 | */ 13 | public class CustomTypeMapping { 14 | 15 | /** 16 | * Object type. 17 | */ 18 | private String type; 19 | 20 | /** 21 | * Custom mapping value. 22 | */ 23 | private String customMapping; 24 | 25 | /** 26 | * Returns the Object type. 27 | * 28 | * @return The Object type 29 | */ 30 | public String getType() { 31 | return type; 32 | } 33 | 34 | /** 35 | * Sets the Object type 36 | * 37 | * @param type the Object type 38 | */ 39 | public void setType(final String type) { 40 | this.type = type; 41 | } 42 | 43 | /** 44 | * Returns the custom mapping value. 45 | * 46 | * @return the custom mapping value 47 | */ 48 | public String getCustomMapping() { 49 | return customMapping; 50 | } 51 | 52 | /** 53 | * Sets the custom mapping value 54 | * 55 | * @param customMapping the custom mapping value 56 | */ 57 | public void setCustomMapping(final String customMapping) { 58 | this.customMapping = customMapping; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /scripts/sql/create_users.sql: -------------------------------------------------------------------------------- 1 | whenever sqlerror exit failure rollback 2 | whenever oserror exit failure rollback 3 | set echo off 4 | set verify off 5 | 6 | define UTPLSQL_USER = 'UT3'; 7 | define APP_USER = 'APP'; 8 | define CODE_OWNER = 'CODE_OWNER'; 9 | define TESTS_OWNER = 'TESTS_OWNER'; 10 | define DB_PASS = 'pass'; 11 | 12 | grant execute any procedure to &UTPLSQL_USER; 13 | grant create any procedure to &UTPLSQL_USER; 14 | grant execute on dbms_lob to &UTPLSQL_USER; 15 | grant execute on dbms_sql to &UTPLSQL_USER; 16 | grant execute on dbms_xmlgen to &UTPLSQL_USER; 17 | grant execute on dbms_lock to &UTPLSQL_USER; 18 | 19 | create user &APP_USER identified by &DB_PASS quota unlimited on USERS default tablespace USERS; 20 | grant create session, create procedure, create type, create table, create sequence, create view to &APP_USER; 21 | grant select any dictionary to &APP_USER; 22 | 23 | create user &CODE_OWNER identified by &DB_PASS quota unlimited on USERS default tablespace USERS; 24 | grant create session, create procedure, create type, create table, create sequence, create view to &CODE_OWNER; 25 | 26 | create user &TESTS_OWNER identified by &DB_PASS quota unlimited on USERS default tablespace USERS; 27 | grant create session, create procedure, create type, create table, create sequence, create view, create synonym to &TESTS_OWNER; 28 | grant select any dictionary to &TESTS_OWNER; 29 | grant select any table, delete any table, drop any table to &TESTS_OWNER; 30 | grant execute any procedure to &TESTS_OWNER; 31 | -------------------------------------------------------------------------------- /src/test/java/org/utplsql/maven/plugin/util/StringUtilTest.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.util; 2 | 3 | import org.junit.jupiter.api.Test; 4 | 5 | import static org.junit.jupiter.api.Assertions.assertFalse; 6 | import static org.junit.jupiter.api.Assertions.assertTrue; 7 | import static org.utplsql.maven.plugin.util.StringUtil.isBlank; 8 | import static org.utplsql.maven.plugin.util.StringUtil.isEmpty; 9 | import static org.utplsql.maven.plugin.util.StringUtil.isNotBlank; 10 | import static org.utplsql.maven.plugin.util.StringUtil.isNotEmpty; 11 | 12 | class StringUtilTest { 13 | 14 | @Test 15 | void isEmpty_with_empty() { 16 | assertTrue(isEmpty("")); 17 | } 18 | 19 | @Test 20 | void isEmpty_with_null() { 21 | assertTrue(isEmpty(null)); 22 | } 23 | 24 | @Test 25 | void isEmpty_with_string() { 26 | assertFalse(isEmpty("abc")); 27 | } 28 | 29 | @Test 30 | void isNotEmpty_with_string() { 31 | assertTrue(isNotEmpty("abc")); 32 | } 33 | 34 | @Test 35 | void isNotEmpty_with_empty() { 36 | assertFalse(isNotEmpty("")); 37 | } 38 | 39 | @Test 40 | void isNotEmpty_with_blank() { 41 | assertTrue(isNotEmpty(" ")); 42 | } 43 | 44 | @Test 45 | void isBlank_with_blank() { 46 | assertTrue(isBlank(" ")); 47 | } 48 | 49 | @Test 50 | void isBlank_with_null() { 51 | assertTrue(isBlank(null)); 52 | } 53 | 54 | @Test 55 | void isBlank_with_string() { 56 | assertFalse(isBlank("abc")); 57 | } 58 | 59 | @Test 60 | void isBlank_with_whitespaces_before_string() { 61 | assertFalse(isBlank(" abc")); 62 | } 63 | 64 | @Test 65 | void isNotBlank_with_string() { 66 | assertTrue(isNotBlank("abc")); 67 | } 68 | 69 | @Test 70 | void isNotBlank_with_empty() { 71 | assertFalse(isNotBlank("")); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/default_console_output_behaviour/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/db_config_using_system_properties/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | ../../../target 13 | 14 | 15 | org.utplsql 16 | utplsql-maven-plugin 17 | @proj 18 | 19 | test 20 | 21 | 22 | true 23 | false 24 | 25 | app 26 | 27 | 28 | 29 | UT_DOCUMENTATION_REPORTER 30 | 31 | 32 | UT_DOCUMENTATION_REPORTER 33 | false 34 | 35 | 36 | UT_COVERAGE_SONAR_REPORTER 37 | coverage-sonar-report.xml 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/exclude_object_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | * 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/exclude_schema_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | * 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/include_object_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | * 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/include_schema_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | * 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/exclude_object/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | app.pkg_test_me,app.test_pkg_test_me 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/include_object/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | app 31 | 32 | 33 | 34 | UT_DOCUMENTATION_REPORTER 35 | 36 | 37 | UT_COVERAGE_SONAR_REPORTER 38 | coverage-sonar-report.xml 39 | false 40 | 41 | 42 | UT_SONAR_TEST_REPORTER 43 | utplsql/sonar-test-report.xml 44 | true 45 | 46 | 47 | app.pkg_test_me,app.test_pkg_test_me 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/dbms_output/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | true 29 | false 30 | 31 | app 32 | 33 | 34 | 35 | UT_DOCUMENTATION_REPORTER 36 | 37 | 38 | UT_DOCUMENTATION_REPORTER 39 | false 40 | 41 | 42 | UT_COVERAGE_SONAR_REPORTER 43 | coverage-sonar-report.xml 44 | 45 | 46 | UT_SONAR_TEST_REPORTER 47 | utplsql/sonar-test-report.xml 48 | true 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Build and deploy release 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | 7 | jobs: 8 | build: 9 | 10 | runs-on: ubuntu-latest 11 | 12 | services: 13 | oracle: 14 | image: gvenzl/oracle-xe:21-slim 15 | env: 16 | ORACLE_PASSWORD: oracle 17 | ports: 18 | - 1521:1521 19 | options: >- 20 | --health-cmd healthcheck.sh 21 | --health-interval 10s 22 | --health-timeout 5s 23 | --health-retries 10 24 | 25 | steps: 26 | - uses: actions/checkout@v2 27 | 28 | - name: Install utPLSQL 29 | run: sh ${{ github.workspace }}/scripts/1_install_utplsql.sh 30 | 31 | - name: Install demo project 32 | run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh 33 | 34 | - name: Set up JDK 11 35 | uses: actions/setup-java@v2 36 | with: 37 | java-version: '11' 38 | distribution: 'adopt' 39 | server-id: ossrh 40 | server-username: MAVEN_USERNAME 41 | server-password: MAVEN_PASSWORD 42 | gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} 43 | gpg-passphrase: MAVEN_GPG_PASSPHRASE 44 | 45 | - name: Cache local Maven repository 46 | uses: actions/cache@v2 47 | with: 48 | path: ~/.m2/repository 49 | key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} 50 | restore-keys: | 51 | ${{ runner.os }}-maven- 52 | 53 | - name: Maven deploy release 54 | run: mvn clean deploy -Prelease 55 | env: 56 | MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} 57 | MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} 58 | MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} 59 | 60 | slack-workflow-status: 61 | if: always() 62 | name: Post Workflow Status To Slack 63 | needs: [ build ] 64 | runs-on: ubuntu-latest 65 | steps: 66 | - name: Slack Workflow Notification 67 | uses: Gamesight/slack-workflow-status@master 68 | with: 69 | # Required Input 70 | repo_token: ${{secrets.GITHUB_TOKEN}} 71 | slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}} 72 | # Optional Input 73 | name: 'Github Actions[bot]' 74 | icon_url: 'https://octodex.github.com/images/mona-the-rivetertocat.png' 75 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/ora_stuck_timeout/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @proj 24 | 25 | test 26 | 27 | 28 | 5 29 | false 30 | 31 | app 32 | 33 | 34 | 35 | UT_DOCUMENTATION_REPORTER 36 | 37 | 38 | UT_DOCUMENTATION_REPORTER 39 | false 40 | 41 | 42 | UT_COVERAGE_SONAR_REPORTER 43 | coverage-sonar-report.xml 44 | 45 | 46 | UT_SONAR_TEST_REPORTER 47 | utplsql/sonar-test-report.xml 48 | true 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | owner-param 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | TESTS_OWNER 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | app.pkg_test_me 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | owner-param 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | TESTS_OWNER 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | app.* 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | owner-param 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | TESTS_OWNER 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | *pkg_test_me 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/invalid_sources_directory/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | foo 47 | 48 | **/*sql 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | owner-param 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | TESTS_OWNER 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | app.pkg_test_me,app.test_pkg_test_me 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/invalid_tests_directory/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | bar 47 | 48 | **/**.pks 49 | **/**.pkb 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/model/ReporterParameter.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.model; 2 | 3 | import static org.utplsql.maven.plugin.util.StringUtil.isNotBlank; 4 | 5 | /** 6 | * Represents a reporter parameter in the pom file. 7 | * 8 | * {@code 9 | * 10 | * ... 11 | * ... 12 | * ... 13 | * 14 | * } 15 | * 16 | * @author Alberto Hernández 17 | */ 18 | public class ReporterParameter { 19 | 20 | private String name; 21 | private String fileOutput; 22 | private Boolean consoleOutput; 23 | 24 | /** 25 | * Returns the reporter name. 26 | * 27 | * @return the reporter name 28 | */ 29 | public String getName() { 30 | return name; 31 | } 32 | 33 | /** 34 | * Sets the reporter name. 35 | * 36 | * @param name the reporter name 37 | */ 38 | public void setName(String name) { 39 | this.name = name; 40 | } 41 | 42 | /** 43 | * Returns reporter output file. 44 | * 45 | * @return the output file name 46 | */ 47 | public String getFileOutput() { 48 | return fileOutput; 49 | } 50 | 51 | /** 52 | * Returns whether the file output is enabled or not. 53 | * 54 | * @return true if the file output is enabled, false otherwise 55 | */ 56 | public boolean isFileOutput() { 57 | return isNotBlank(fileOutput); 58 | } 59 | 60 | /** 61 | * Sets the output file. 62 | * 63 | * @param fileOutput the output file name 64 | */ 65 | public void setFileOutput(String fileOutput) { 66 | this.fileOutput = fileOutput; 67 | } 68 | 69 | /** 70 | * Returns the console output option. 71 | * 72 | * @return the console output option 73 | */ 74 | public Boolean getConsoleOutput() { 75 | return consoleOutput; 76 | } 77 | 78 | /** 79 | * Returns whether the console output should be enabled or not. 80 | * 81 | * @return true if console output is enable, false otherwise 82 | */ 83 | public Boolean isConsoleOutput() { 84 | return null != consoleOutput && consoleOutput; 85 | } 86 | 87 | /** 88 | * Sets the console output option. 89 | * 90 | * @param consoleOutput the console output option 91 | */ 92 | public void setConsoleOutput(boolean consoleOutput) { 93 | this.consoleOutput = consoleOutput; 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | 10 | pom 11 | 12 | 13 | jdbc:oracle:thin:@127.0.0.1:1521:xe 14 | UT3 15 | UT3 16 | 17 | 18 | 19 | ../../../target 20 | 21 | 22 | org.utplsql 23 | utplsql-maven-plugin 24 | @project.version@ 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | :plsql 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | 46 | 47 | src/main/foo 48 | 49 | 50 | 51 | 52 | src/test/bar 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | tags 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | app 32 | 33 | 34 | exists 35 | cursor 36 | 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | scripts/tests 47 | 48 | **/**.pks 49 | **/**.pkb 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/io/SqlFileScanner.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.io; 2 | 3 | import org.apache.maven.model.Resource; 4 | import org.codehaus.plexus.util.DirectoryScanner; 5 | 6 | import java.io.File; 7 | import java.io.IOException; 8 | import java.util.ArrayList; 9 | import java.util.Collections; 10 | import java.util.List; 11 | 12 | import static java.lang.String.format; 13 | 14 | /** 15 | * Utility to scan all resources 16 | * 17 | * @author Alberto Hernández 18 | * @author Simon Martinelli 19 | */ 20 | public class SqlFileScanner { 21 | 22 | /** 23 | * Scans a directory looking for the matching patterns. 24 | * 25 | * @param baseDir the base directory 26 | * @param resources a list of resources 27 | * @param defaultDirectory the default search directory 28 | * @param defaultFilePattern the default file pattern 29 | * @return a list of the files found 30 | */ 31 | public List findSqlScripts(File baseDir, List resources, String defaultDirectory, String defaultFilePattern) throws IOException { 32 | List founds = new ArrayList<>(); 33 | 34 | for (Resource resource : resources) { 35 | if (resource.getDirectory() == null) { 36 | resource.setDirectory(defaultDirectory); 37 | } 38 | 39 | if (resource.getIncludes().isEmpty()) { 40 | resource.getIncludes().add(defaultFilePattern); 41 | } 42 | 43 | DirectoryScanner scanner = buildScanner(baseDir.getPath(), resource); 44 | scanner.scan(); 45 | 46 | for (String basename : scanner.getIncludedFiles()) { 47 | founds.add(baseDir.toURI().relativize(new File(scanner.getBasedir(), basename).toURI()).getPath()); 48 | } 49 | founds.addAll(Collections.emptyList()); 50 | } 51 | 52 | return founds; 53 | } 54 | 55 | private DirectoryScanner buildScanner(String baseDir, Resource resource) throws IOException { 56 | File fileBaseDir = new File(baseDir, resource.getDirectory()); 57 | if (!fileBaseDir.exists() || !fileBaseDir.isDirectory() || !fileBaseDir.canRead()) { 58 | throw new IOException(format("Directory %s does not exist!", resource.getDirectory())); 59 | } 60 | 61 | DirectoryScanner scanner = new DirectoryScanner(); 62 | scanner.setBasedir(fileBaseDir.getPath()); 63 | scanner.setIncludes(resource.getIncludes().toArray(new String[0])); 64 | scanner.setExcludes(resource.getExcludes().toArray(new String[0])); 65 | return scanner; 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/scripts/test/app/packages/TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE app.TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 79 | 80 | -- %test 81 | -- %displayname(Demonstrating the use of cursor) 82 | -- %rollback(manual) 83 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 84 | 85 | END; 86 | / 87 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/scripts/test/app/packages/TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE app.TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 79 | 80 | -- %test 81 | -- %displayname(Demonstrating the use of cursor) 82 | -- %rollback(manual) 83 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 84 | 85 | END; 86 | / 87 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/test/bar/packages/TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE TESTS_OWNER.TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 79 | 80 | -- %test 81 | -- %displayname(Demonstrating the use of cursor) 82 | -- %rollback(manual) 83 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 84 | 85 | END; 86 | / 87 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/tests/APP.TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | -- %tags(exists) 79 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 80 | 81 | -- %test 82 | -- %displayname(Demonstrating the use of cursor) 83 | -- %rollback(manual) 84 | -- %tags(cursor) 85 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 86 | 87 | END; 88 | / 89 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/scripts/tests/APP.TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | -- %tags(exists) 79 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 80 | 81 | -- %test 82 | -- %displayname(Demonstrating the use of cursor) 83 | -- %rollback(manual) 84 | -- %tags(cursor) 85 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 86 | 87 | END; 88 | / 89 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/scripts/tests/APP.TEST_PKG_TEST_ME.pks: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE TEST_PKG_TEST_ME AS 2 | -- %suite(TEST_PKG_TEST_ME) 3 | -- %suitepath(plsql.examples) 4 | -- 5 | -- This package shows all the possibilities to unit test 6 | -- your PL/SQL package. NOTE that it is not limited to 7 | -- testing your package. You can do that on all your 8 | -- procedure/functions... 9 | -- 10 | 11 | /** 12 | * This two parameters are used by the test framework in 13 | * order to identify the test suite to run 14 | */ 15 | 16 | /* 17 | * This method is invoked once before any other method. 18 | * It should contain all the setup code that is relevant 19 | * for all your test. It might be inserting a register, 20 | * creating a type, etc... 21 | */ 22 | -- %beforeall 23 | PROCEDURE SETUP_GLOBAL; 24 | 25 | /* 26 | * This method is invoked once after all other method. 27 | * It can be used to clean up all the resources that 28 | * you created in your script 29 | */ 30 | -- %afterall 31 | PROCEDURE TEARDOWN_GLOBAL; 32 | 33 | /* 34 | * This method is called once before each test. 35 | */ 36 | -- %beforeeach 37 | PROCEDURE SETUP_TEST; 38 | 39 | /* 40 | * This method is called once after each test. 41 | */ 42 | -- %aftereach 43 | PROCEDURE TEARDOWN_TEST; 44 | 45 | /** 46 | * This is a real test. The main test can declare a setup 47 | * and teardown method in order to setup and cleanup things 48 | * for that specific test. 49 | */ 50 | -- %test 51 | -- %displayname(Checking if function ('1') returns 1) 52 | -- %beforetest(SETUP_TEST_FC_INPUT_1) 53 | -- %aftertest(TEARDOWN_TEST_FC_INPUT_1) 54 | PROCEDURE TEST_FC_INPUT_1; 55 | PROCEDURE SETUP_TEST_FC_INPUT_1; 56 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1; 57 | 58 | -- %test 59 | -- %displayname(Checking if function ('0') returns 0) 60 | PROCEDURE TEST_FC_INPUT_0; 61 | 62 | -- %test 63 | -- %displayname(Checking if function (NULL) returns NULL) 64 | PROCEDURE TEST_FC_INPUT_NULL; 65 | 66 | -- %test 67 | -- %displayname(Checking if procedure (NULL) insert) 68 | PROCEDURE TEST_PR_TEST_ME_NULL; 69 | 70 | -- %test 71 | -- %displayname(Checking if procedure (NOT NULL) insert) 72 | -- %rollback(manual) 73 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL; 74 | 75 | -- %test 76 | -- %displayname(Checking if procedure (NOT NULL) insert while existing) 77 | -- %rollback(manual) 78 | -- %tags(exists) 79 | PROCEDURE TEST_PR_TEST_ME_EXISTS; 80 | 81 | -- %test 82 | -- %displayname(Demonstrating the use of cursor) 83 | -- %rollback(manual) 84 | -- %tags(cursor) 85 | PROCEDURE TEST_PR_TEST_ME_CURSOR; 86 | 87 | END; 88 | / 89 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | 47 | **/*sql 48 | 49 | 50 | 51 | 52 | 53 | 54 | **/*sql 55 | 56 | 57 | 58 | 59 | **/*.pkg 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /src/test/java/org/utplsql/maven/plugin/ReportChecker.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin; 2 | 3 | import com.soebes.itf.jupiter.maven.MavenExecutionResult; 4 | import org.apache.commons.io.FileUtils; 5 | 6 | import java.io.File; 7 | import java.io.IOException; 8 | import java.nio.file.Files; 9 | import java.util.stream.Collectors; 10 | import java.util.stream.Stream; 11 | 12 | import static com.soebes.itf.extension.assertj.MavenProjectResultAssert.assertThat; 13 | import static org.junit.jupiter.api.Assertions.assertEquals; 14 | import static org.junit.jupiter.api.Assertions.fail; 15 | 16 | public class ReportChecker { 17 | 18 | private ReportChecker() { 19 | } 20 | 21 | /** 22 | * Duration is set to 1 before comparing contents as it is always different. 23 | * Path separator is set to "/" to ensure windows / linux / mac compatibility. 24 | * \r and \n are removed to provide simpler comparison. 25 | * 26 | * @param result {@link MavenExecutionResult} 27 | * @param files Files to compare 28 | */ 29 | public static void assertThatReportsAreGeneratedAsExpected(MavenExecutionResult result, String... files) { 30 | for (String filename : files) { 31 | File expectedOutputFile = new File(result.getMavenProjectResult().getTargetProjectDirectory(), "/expected-output/utplsql/" + filename); 32 | File outputFile = new File(result.getMavenProjectResult().getTargetProjectDirectory(), "/target/utplsql/" + filename); 33 | 34 | assertThat(result.getMavenProjectResult()).withFile("/utplsql/" + filename).exists(); 35 | 36 | try (Stream stream = Files.lines(outputFile.toPath())) { 37 | String outputContent = stream 38 | .filter(line -> !line.contains(" line.replaceAll("(duration=\"[0-9.]*\")", "duration=\"1\"")) 40 | .map(line -> line.replaceAll("\\\\", "/")) 41 | .map(line -> line.replaceAll("\r", "").replaceAll("\n", "")) 42 | .collect(Collectors.joining("\n")); 43 | 44 | assertEquals( 45 | FileUtils.readFileToString(expectedOutputFile, "utf-8") 46 | .replace("\r", "") 47 | .replace("\n", ""), 48 | outputContent.replace("\n", ""), "The files differ!"); 49 | } catch (IOException e) { 50 | fail(e); 51 | } 52 | } 53 | } 54 | 55 | /** 56 | * Check if the report was generated 57 | * 58 | * @param result {@link MavenExecutionResult} 59 | * @param filename File Name 60 | * @return if report exits 61 | */ 62 | public static boolean reportWasGenerated(MavenExecutionResult result, String filename) { 63 | File outputFile = new File(result.getMavenProjectResult().getTargetProjectDirectory(), "/target/utplsql/" + filename); 64 | return outputFile.exists(); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build and deploy snapshot 2 | 3 | on: 4 | push: 5 | branches-ignore: [ main ] 6 | pull_request: 7 | branches: [ develop ] 8 | 9 | workflow_dispatch: 10 | 11 | repository_dispatch: 12 | type: [utPLSQL-build,utPLSQL-java-api-build] 13 | 14 | jobs: 15 | build: 16 | 17 | runs-on: ubuntu-latest 18 | 19 | services: 20 | oracle: 21 | image: gvenzl/oracle-xe:21-slim 22 | env: 23 | ORACLE_PASSWORD: oracle 24 | ports: 25 | - 1521:1521 26 | options: >- 27 | --health-cmd healthcheck.sh 28 | --health-interval 10s 29 | --health-timeout 5s 30 | --health-retries 10 31 | 32 | steps: 33 | - uses: actions/checkout@v2 34 | with: 35 | fetch-depth: 0 36 | 37 | - name: Install utPLSQL 38 | run: sh ${{ github.workspace }}/scripts/1_install_utplsql.sh 39 | 40 | - name: Install demo project 41 | run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh 42 | 43 | - name: Set up JDK 11 44 | uses: actions/setup-java@v2 45 | with: 46 | java-version: '11' 47 | distribution: 'adopt' 48 | server-id: ossrh 49 | server-username: MAVEN_USERNAME 50 | server-password: MAVEN_PASSWORD 51 | gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} 52 | gpg-passphrase: MAVEN_GPG_PASSPHRASE 53 | 54 | - name: Cache local Maven repository 55 | uses: actions/cache@v2 56 | with: 57 | path: ~/.m2/repository 58 | key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} 59 | restore-keys: | 60 | ${{ runner.os }}-maven- 61 | 62 | - name: Maven unit and integration tests with sonar 63 | run: mvn clean verify sonar:sonar -Pcoverage -Dsonar.projectKey=org.utplsql:utplsql-maven-plugin 64 | env: 65 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 66 | SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} 67 | 68 | - name: Maven deploy snapshot 69 | run: mvn deploy -DskipTests 70 | env: 71 | MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} 72 | MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} 73 | MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} 74 | 75 | - name: Publish unit test results 76 | uses: EnricoMi/publish-unit-test-result-action@v1.24 77 | if: always() 78 | with: 79 | files: target/**/TEST**.xml 80 | 81 | slack-workflow-status: 82 | if: always() 83 | name: Post Workflow Status To Slack 84 | needs: [ build ] 85 | runs-on: ubuntu-latest 86 | steps: 87 | - name: Slack Workflow Notification 88 | uses: Gamesight/slack-workflow-status@master 89 | with: 90 | # Required Input 91 | repo_token: ${{secrets.GITHUB_TOKEN}} 92 | slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}} 93 | # Optional Input 94 | name: 'Github Actions[bot]' 95 | icon_url: 'https://octodex.github.com/images/mona-the-rivetertocat.png' 96 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/skip_utplsql_tests/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | true 29 | false 30 | 31 | :plsql 32 | 33 | 34 | 35 | UT_DOCUMENTATION_REPORTER 36 | 37 | 38 | UT_DOCUMENTATION_REPORTER 39 | false 40 | 41 | 42 | UT_COVERAGE_SONAR_REPORTER 43 | coverage-sonar-report.xml 44 | 45 | 46 | UT_SONAR_TEST_REPORTER 47 | utplsql/sonar-test-report.xml 48 | true 49 | 50 | 51 | 52 | 53 | foo 54 | 55 | **/*sql 56 | 57 | 58 | 59 | 60 | 61 | bar 62 | 63 | **/**.pks 64 | **/**.pkb 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | simple 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | app 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | 46 | 47 | scripts/sources 48 | 49 | **/**.pks 50 | **/**.pkb 51 | 52 | 53 | 54 | 55 | 56 | scripts/tests 57 | 58 | **/**.pks 59 | **/**.pkb 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | ora-stuck-timeout 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | 1 30 | false 31 | 32 | app 33 | 34 | 35 | 36 | UT_COVERAGE_SONAR_REPORTER 37 | utplsql/coverage-sonar-report.xml 38 | true 39 | 40 | 41 | UT_SONAR_TEST_REPORTER 42 | utplsql/sonar-test-report.xml 43 | true 44 | 45 | 46 | 47 | 48 | scripts/sources 49 | 50 | **/**.pks 51 | **/**.pkb 52 | 53 | 54 | 55 | 56 | 57 | scripts/tests 58 | 59 | **/**.pks 60 | **/**.pkb 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoIT.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin; 2 | 3 | import com.soebes.itf.jupiter.extension.MavenGoal; 4 | import com.soebes.itf.jupiter.extension.MavenJupiterExtension; 5 | import com.soebes.itf.jupiter.extension.MavenTest; 6 | import com.soebes.itf.jupiter.maven.MavenExecutionResult; 7 | 8 | import static com.soebes.itf.extension.assertj.MavenITAssertions.assertThat; 9 | import static org.utplsql.maven.plugin.ReportChecker.assertThatReportsAreGeneratedAsExpected; 10 | import static org.utplsql.maven.plugin.ReportChecker.reportWasGenerated; 11 | 12 | @MavenGoal("test") 13 | @MavenJupiterExtension 14 | class UtPlsqlMojoIT { 15 | 16 | @MavenTest 17 | void minimalist(MavenExecutionResult result) { 18 | assertThat(result).isSuccessful(); 19 | } 20 | 21 | @MavenTest 22 | void owner_param(MavenExecutionResult result) { 23 | assertThat(result).isSuccessful(); 24 | 25 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 26 | } 27 | 28 | @MavenTest 29 | void regex(MavenExecutionResult result) { 30 | assertThat(result).isSuccessful(); 31 | 32 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 33 | } 34 | 35 | @MavenTest 36 | void simple(MavenExecutionResult result) { 37 | assertThat(result).isSuccessful(); 38 | 39 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 40 | } 41 | 42 | @MavenTest 43 | void skip(MavenExecutionResult result) { 44 | assertThat(result).isSuccessful(); 45 | 46 | assertThat(result.getMavenLog()).info().contains("utPLSQLTests are skipped."); 47 | 48 | assertThat(reportWasGenerated(result, "sonar-test-report.xml")).isFalse(); 49 | } 50 | 51 | @MavenTest 52 | void tags(MavenExecutionResult result) { 53 | assertThat(result).isSuccessful(); 54 | 55 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml"); 56 | } 57 | 58 | @MavenTest 59 | void type_mapping(MavenExecutionResult result) { 60 | assertThat(result).isSuccessful(); 61 | 62 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 63 | } 64 | 65 | @MavenTest 66 | void exclude_object(MavenExecutionResult result) { 67 | assertThat(result).isSuccessful(); 68 | 69 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 70 | } 71 | 72 | @MavenTest 73 | void include_object(MavenExecutionResult result) { 74 | assertThat(result).isSuccessful(); 75 | 76 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 77 | } 78 | 79 | @MavenTest 80 | void ora_stuck_timeout(MavenExecutionResult result) { 81 | assertThat(result).isSuccessful(); 82 | 83 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 84 | } 85 | 86 | @MavenTest 87 | void exclude_object_expr(MavenExecutionResult result) { 88 | assertThat(result).isSuccessful(); 89 | 90 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 91 | } 92 | 93 | @MavenTest 94 | void include_object_expr(MavenExecutionResult result) { 95 | assertThat(result).isSuccessful(); 96 | 97 | assertThatReportsAreGeneratedAsExpected(result, "sonar-test-report.xml", "coverage-sonar-report.xml"); 98 | } 99 | 100 | } 101 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | regex 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | app 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | 46 | 47 | scripts/sources 48 | 49 | **/**.sql 50 | **/**.pks 51 | **/**.pkb 52 | 53 | 54 | 55 | .*(\\|\/)(\w+)(\\|\/)(\w+)(\\|\/)(\w+).(\w{3}) 56 | 2 57 | 6 58 | 7 59 | 60 | 61 | scripts/test 62 | 63 | **/**.pks 64 | **/**.pkb 65 | 66 | 67 | 68 | .*(\\|\/)(\w+)(\\|\/)(\w+)(\\|\/)(\w+).(\w{3}) 69 | 2 70 | 6 71 | 7 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /src/test/resources/unit-tests/sources_tests_parameters/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin-test 8 | 3.1.0-SNAPSHOT 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@127.0.0.1:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | ../../../target 19 | 20 | 21 | org.utplsql 22 | utplsql-maven-plugin 23 | @project.version@ 24 | 25 | test 26 | 27 | 28 | false 29 | 30 | :plsql 31 | 32 | 33 | 34 | UT_COVERAGE_SONAR_REPORTER 35 | utplsql/coverage-sonar-report.xml 36 | true 37 | 38 | 39 | UT_SONAR_TEST_REPORTER 40 | utplsql/sonar-test-report.xml 41 | true 42 | 43 | 44 | 45 | 46 | srcs 47 | 48 | **/*sql 49 | 50 | 51 | 52 | code_owner 53 | .*/\w+/(\w+)/(\w+)\.\w{3} 54 | 9 55 | 1 56 | 4 57 | 58 | 59 | foo 60 | bar 61 | 62 | 63 | 64 | 65 | te/st 66 | 67 | **/**.pks 68 | **/**.pkb 69 | 70 | 71 | 72 | tests_owner 73 | .*/\w+/(\w+)/(\w+)\.\w{3} 74 | 24 75 | 54 76 | 21 77 | 78 | 79 | abc 80 | def 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/scripts/tests/APP.TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/scripts/tests/APP.TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/scripts/tests/APP.TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/scripts/test/app/packages/TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY app.TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/scripts/test/app/package_bodies/TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY app.TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/scripts/test/bar/package_bodies/TEST_PKG_TEST_ME.pkb: -------------------------------------------------------------------------------- 1 | CREATE OR REPLACE PACKAGE BODY TESTS_OWNER.TEST_PKG_TEST_ME AS 2 | 3 | --------------------------------------------------------------------------- 4 | PROCEDURE SETUP_GLOBAL IS 5 | BEGIN 6 | -- Put here the code which is valid for all tests and that should be 7 | -- executed once. 8 | NULL; 9 | END SETUP_GLOBAL; 10 | 11 | --------------------------------------------------------------------------- 12 | PROCEDURE TEARDOWN_GLOBAL IS 13 | BEGIN 14 | -- Put here the code that should be called only once after all the test 15 | -- have executed 16 | NULL; 17 | END TEARDOWN_GLOBAL; 18 | 19 | --------------------------------------------------------------------------- 20 | PROCEDURE SETUP_TEST IS 21 | BEGIN 22 | -- Nothing to clean up globally 23 | NULL; 24 | END SETUP_TEST; 25 | 26 | PROCEDURE TEARDOWN_TEST IS 27 | BEGIN 28 | -- Nothing to clean up globally 29 | NULL; 30 | END TEARDOWN_TEST; 31 | 32 | PROCEDURE TEST_FC_INPUT_1 IS 33 | BEGIN 34 | -- Ok this is a real test where I check that the function return 1 35 | -- when called with a '1' parameter 36 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('1')).TO_EQUAL(1); 37 | END; 38 | 39 | PROCEDURE SETUP_TEST_FC_INPUT_1 IS 40 | BEGIN 41 | -- Nothing to be done really 42 | NULL; 43 | END; 44 | 45 | PROCEDURE TEARDOWN_TEST_FC_INPUT_1 IS 46 | BEGIN 47 | -- Nothing to be done really 48 | NULL; 49 | END; 50 | 51 | PROCEDURE TEST_FC_INPUT_0 IS 52 | BEGIN 53 | -- Ok this is a real test where I check that the function return 0 54 | -- when called with a '0' parameter 55 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME('0')).TO_EQUAL(0); 56 | END; 57 | 58 | PROCEDURE TEST_FC_INPUT_NULL IS 59 | BEGIN 60 | -- Ok I check that the function return NULL 61 | -- when called with a NULL parameter 62 | UT.EXPECT(PKG_TEST_ME.FC_TEST_ME(NULL)).TO_BE_NULL; 63 | END TEST_FC_INPUT_NULL; 64 | 65 | PROCEDURE TEST_PR_TEST_ME_NULL IS 66 | VNCOUNT1 PLS_INTEGER; 67 | VNCOUNT2 PLS_INTEGER; 68 | BEGIN 69 | -- In this example I check that the procedure does 70 | -- not insert anything when passing it a NULL parameter 71 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 72 | PKG_TEST_ME.PR_TEST_ME(NULL); 73 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 74 | UT.EXPECT(VNCOUNT1).TO_EQUAL(VNCOUNT2); 75 | END; 76 | 77 | PROCEDURE TEST_PR_TEST_ME_NOT_NULL IS 78 | VNCOUNT1 PLS_INTEGER; 79 | VNCOUNT2 PLS_INTEGER; 80 | VSNAME TO_TEST_ME.SNAME%TYPE; 81 | BEGIN 82 | -- In this test I will check that I do insert a value 83 | -- when the parameter is not null. I futher check that 84 | -- the procedure has inserted the value I specified. 85 | SELECT COUNT(1) INTO VNCOUNT1 FROM TO_TEST_ME; 86 | VSNAME := TO_CHAR(VNCOUNT1); 87 | PKG_TEST_ME.PR_TEST_ME(VSNAME); 88 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME; 89 | 90 | -- Check that I have inserted the value 91 | UT.EXPECT(VNCOUNT1 + 1).TO_EQUAL(VNCOUNT2); 92 | SELECT COUNT(1) INTO VNCOUNT2 FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 93 | 94 | -- Check that I inserted the one I said I would insert 95 | UT.EXPECT(VNCOUNT2).TO_EQUAL(1); 96 | DELETE FROM TO_TEST_ME T WHERE T.SNAME = VSNAME; 97 | COMMIT; 98 | END; 99 | 100 | PROCEDURE TEST_PR_TEST_ME_EXISTS IS 101 | BEGIN 102 | -- In case the value exists the procedure should fail with an exception. 103 | BEGIN 104 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 105 | PKG_TEST_ME.PR_TEST_ME('EXISTS'); 106 | EXCEPTION 107 | WHEN OTHERS THEN 108 | UT.FAIL('Unexpected exception raised'); 109 | END; 110 | END; 111 | 112 | PROCEDURE TEST_PR_TEST_ME_CURSOR IS 113 | TYPE REF_CURSOR IS REF CURSOR; 114 | VEXPECTED REF_CURSOR; 115 | VACTUAL REF_CURSOR; 116 | BEGIN 117 | EXECUTE IMMEDIATE 'TRUNCATE TABLE CODE_OWNER.TO_TEST_ME'; 118 | OPEN VEXPECTED FOR 119 | SELECT T.SNAME FROM TO_TEST_ME T; 120 | OPEN VACTUAL FOR 121 | SELECT T.SNAME FROM TO_TEST_ME T; 122 | UT.EXPECT(VEXPECTED).TO_(EQUAL(VACTUAL)); 123 | END; 124 | 125 | END; 126 | / 127 | -------------------------------------------------------------------------------- /src/main/java/org/utplsql/maven/plugin/io/ReportWriter.java: -------------------------------------------------------------------------------- 1 | package org.utplsql.maven.plugin.io; 2 | 3 | import org.apache.maven.plugin.logging.Log; 4 | import org.utplsql.api.Version; 5 | import org.utplsql.api.outputBuffer.OutputBuffer; 6 | import org.utplsql.api.outputBuffer.OutputBufferProvider; 7 | import org.utplsql.api.reporter.Reporter; 8 | import org.utplsql.maven.plugin.model.ReporterParameter; 9 | 10 | import java.io.File; 11 | import java.io.FileOutputStream; 12 | import java.io.IOException; 13 | import java.io.PrintStream; 14 | import java.sql.Connection; 15 | import java.sql.SQLException; 16 | import java.util.ArrayList; 17 | import java.util.List; 18 | 19 | import static java.lang.String.format; 20 | 21 | /** 22 | * Writes the reports 23 | * 24 | * @author Alberto Hernández 25 | * @author Simon Martinelli 26 | */ 27 | public class ReportWriter { 28 | 29 | private final List reporters; 30 | 31 | private final String outputDirectory; 32 | 33 | private final Version databaseVersion; 34 | 35 | private final Log log; 36 | 37 | /** 38 | * Constructor of the reporter writer. 39 | * 40 | * @param outputDirectory the report output directory 41 | * @param databaseVersion the utPLSQL framework {@link Version} 42 | * @param log the Maven log 43 | */ 44 | public ReportWriter(String outputDirectory, Version databaseVersion, Log log) { 45 | this.reporters = new ArrayList<>(); 46 | this.outputDirectory = outputDirectory; 47 | this.databaseVersion = databaseVersion; 48 | this.log = log; 49 | } 50 | 51 | /** 52 | * Adds a new reporter to the writer. 53 | * 54 | * @param parameter the {@link ReporterParameter} 55 | * @param reporter the {@link Reporter} 56 | */ 57 | public void addReporter(ReporterParameter parameter, Reporter reporter) { 58 | reporters.add(new ReporterAndReporterParameter(reporter, parameter)); 59 | } 60 | 61 | /** 62 | * Writes the reports to the output. 63 | * 64 | * @param connection The database {@link Connection} 65 | * @throws SQLException if database access fails 66 | * @throws IOException if files can't be written 67 | */ 68 | public void writeReports(Connection connection) throws SQLException, IOException { 69 | for (ReporterAndReporterParameter pair : reporters) { 70 | writeReports(connection, pair.getReporter(), pair.getReporterParameter()); 71 | } 72 | } 73 | 74 | private void writeReports(Connection connection, Reporter reporter, ReporterParameter reporterParameter) throws IOException, SQLException { 75 | FileOutputStream fileOutputStream = null; 76 | try { 77 | OutputBuffer buffer = OutputBufferProvider.getCompatibleOutputBuffer(databaseVersion, reporter, connection); 78 | List printStreams = new ArrayList<>(); 79 | 80 | if (reporterParameter.isFileOutput()) { 81 | File file = new File(reporterParameter.getFileOutput()); 82 | if (!file.isAbsolute()) { 83 | file = new File(outputDirectory, reporterParameter.getFileOutput()); 84 | } 85 | 86 | if (!file.getParentFile().exists()) { 87 | log.debug("Creating directory for report file " + file.getAbsolutePath()); 88 | //noinspection ResultOfMethodCallIgnored 89 | file.getParentFile().mkdirs(); 90 | } 91 | 92 | fileOutputStream = new FileOutputStream(file); 93 | log.info(format("Writing report %s to %s", reporter.getTypeName(), file.getAbsolutePath())); 94 | 95 | printStreams.add(new PrintStream(fileOutputStream)); 96 | } 97 | 98 | if (reporterParameter.isConsoleOutput()) { 99 | log.info(format("Writing report %s to Console", reporter.getTypeName())); 100 | printStreams.add(System.out); 101 | } 102 | 103 | buffer.printAvailable(connection, printStreams); 104 | 105 | } finally { 106 | if (fileOutputStream != null) { 107 | fileOutputStream.close(); 108 | } 109 | } 110 | } 111 | } 112 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | owner-param 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | false 30 | 31 | tests_owner 32 | 33 | 34 | 35 | UT_COVERAGE_SONAR_REPORTER 36 | utplsql/coverage-sonar-report.xml 37 | true 38 | 39 | 40 | UT_SONAR_TEST_REPORTER 41 | utplsql/sonar-test-report.xml 42 | true 43 | 44 | 45 | 46 | 47 | scripts/sources 48 | 49 | **/**.sql 50 | **/**.pks 51 | **/**.pkb 52 | 53 | 54 | 55 | code_owner 56 | .*/\w+/(\w+)/(\w+)\.\w{3} 57 | 2 58 | 1 59 | 60 | 61 | package body 62 | package_bodies 63 | 64 | 65 | 66 | 67 | scripts/test 68 | 69 | **/**.pks 70 | **/**.pkb 71 | 72 | 73 | 74 | tests_owner 75 | .*/\w+/(\w+)/(\w+)\.\w{3} 76 | 2 77 | 1 78 | 79 | 80 | package body 81 | package_bodies 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | type-mapping 8 | 1.0.0 9 | pom 10 | 11 | 12 | jdbc:oracle:thin:@localhost:1521:xe 13 | UT3 14 | UT3 15 | 16 | 17 | 18 | 19 | 20 | org.utplsql 21 | utplsql-maven-plugin 22 | @project.version@ 23 | 24 | 25 | 26 | test 27 | 28 | 29 | 30 | 31 | false 32 | 33 | 34 | app 35 | 36 | 37 | 38 | 39 | UT_COVERAGE_SONAR_REPORTER 40 | utplsql/coverage-sonar-report.xml 41 | true 42 | 43 | 44 | UT_SONAR_TEST_REPORTER 45 | utplsql/sonar-test-report.xml 46 | true 47 | 48 | 49 | 50 | 51 | 52 | scripts/sources 53 | 54 | **/**.sql 55 | **/**.pks 56 | **/**.pkb 57 | 58 | 59 | 60 | .*/(\w+)/(\w+)/(\w+)\.\w{3} 61 | 1 62 | 3 63 | 2 64 | 65 | 66 | package body 67 | package_bodies 68 | 69 | 70 | 71 | 72 | 73 | scripts/test 74 | 75 | **/**.pks 76 | **/**.pkb 77 | 78 | 79 | 80 | .*/(\w+)/(\w+)/(\w+)\.\w{3} 81 | 1 82 | 3 83 | 2 84 | 85 | 86 | package body 87 | package_bodies 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- 1 | @REM ---------------------------------------------------------------------------- 2 | @REM Licensed to the Apache Software Foundation (ASF) under one 3 | @REM or more contributor license agreements. See the NOTICE file 4 | @REM distributed with this work for additional information 5 | @REM regarding copyright ownership. The ASF licenses this file 6 | @REM to you under the Apache License, Version 2.0 (the 7 | @REM "License"); you may not use this file except in compliance 8 | @REM with the License. You may obtain a copy of the License at 9 | @REM 10 | @REM http://www.apache.org/licenses/LICENSE-2.0 11 | @REM 12 | @REM Unless required by applicable law or agreed to in writing, 13 | @REM software distributed under the License is distributed on an 14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | @REM KIND, either express or implied. See the License for the 16 | @REM specific language governing permissions and limitations 17 | @REM under the License. 18 | @REM ---------------------------------------------------------------------------- 19 | 20 | @REM ---------------------------------------------------------------------------- 21 | @REM Maven Start Up Batch script 22 | @REM 23 | @REM Required ENV vars: 24 | @REM JAVA_HOME - location of a JDK home dir 25 | @REM 26 | @REM Optional ENV vars 27 | @REM M2_HOME - location of maven2's installed home dir 28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands 29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending 30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven 31 | @REM e.g. to debug Maven itself, use 32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files 34 | @REM ---------------------------------------------------------------------------- 35 | 36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' 37 | @echo off 38 | @REM set title of command window 39 | title %0 40 | @REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' 41 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% 42 | 43 | @REM set %HOME% to equivalent of $HOME 44 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") 45 | 46 | @REM Execute a user defined script before this one 47 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre 48 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending 49 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" 50 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" 51 | :skipRcPre 52 | 53 | @setlocal 54 | 55 | set ERROR_CODE=0 56 | 57 | @REM To isolate internal variables from possible post scripts, we use another setlocal 58 | @setlocal 59 | 60 | @REM ==== START VALIDATION ==== 61 | if not "%JAVA_HOME%" == "" goto OkJHome 62 | 63 | echo. 64 | echo Error: JAVA_HOME not found in your environment. >&2 65 | echo Please set the JAVA_HOME variable in your environment to match the >&2 66 | echo location of your Java installation. >&2 67 | echo. 68 | goto error 69 | 70 | :OkJHome 71 | if exist "%JAVA_HOME%\bin\java.exe" goto init 72 | 73 | echo. 74 | echo Error: JAVA_HOME is set to an invalid directory. >&2 75 | echo JAVA_HOME = "%JAVA_HOME%" >&2 76 | echo Please set the JAVA_HOME variable in your environment to match the >&2 77 | echo location of your Java installation. >&2 78 | echo. 79 | goto error 80 | 81 | @REM ==== END VALIDATION ==== 82 | 83 | :init 84 | 85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". 86 | @REM Fallback to current working directory if not found. 87 | 88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% 89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir 90 | 91 | set EXEC_DIR=%CD% 92 | set WDIR=%EXEC_DIR% 93 | :findBaseDir 94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound 95 | cd .. 96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound 97 | set WDIR=%CD% 98 | goto findBaseDir 99 | 100 | :baseDirFound 101 | set MAVEN_PROJECTBASEDIR=%WDIR% 102 | cd "%EXEC_DIR%" 103 | goto endDetectBaseDir 104 | 105 | :baseDirNotFound 106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% 107 | cd "%EXEC_DIR%" 108 | 109 | :endDetectBaseDir 110 | 111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig 112 | 113 | @setlocal EnableExtensions EnableDelayedExpansion 114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a 115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% 116 | 117 | :endReadAdditionalConfig 118 | 119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" 120 | set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" 121 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 122 | 123 | set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" 124 | 125 | FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( 126 | IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B 127 | ) 128 | 129 | @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 130 | @REM This allows using the maven wrapper in projects that prohibit checking in binary data. 131 | if exist %WRAPPER_JAR% ( 132 | if "%MVNW_VERBOSE%" == "true" ( 133 | echo Found %WRAPPER_JAR% 134 | ) 135 | ) else ( 136 | if not "%MVNW_REPOURL%" == "" ( 137 | SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" 138 | ) 139 | if "%MVNW_VERBOSE%" == "true" ( 140 | echo Couldn't find %WRAPPER_JAR%, downloading it ... 141 | echo Downloading from: %DOWNLOAD_URL% 142 | ) 143 | 144 | powershell -Command "&{"^ 145 | "$webclient = new-object System.Net.WebClient;"^ 146 | "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ 147 | "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ 148 | "}"^ 149 | "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ 150 | "}" 151 | if "%MVNW_VERBOSE%" == "true" ( 152 | echo Finished downloading %WRAPPER_JAR% 153 | ) 154 | ) 155 | @REM End of extension 156 | 157 | @REM Provide a "standardized" way to retrieve the CLI args that will 158 | @REM work with both Windows and non-Windows executions. 159 | set MAVEN_CMD_LINE_ARGS=%* 160 | 161 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* 162 | if ERRORLEVEL 1 goto error 163 | goto end 164 | 165 | :error 166 | set ERROR_CODE=1 167 | 168 | :end 169 | @endlocal & set ERROR_CODE=%ERROR_CODE% 170 | 171 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost 172 | @REM check for post script, once with legacy .bat ending and once with .cmd ending 173 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" 174 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" 175 | :skipRcPost 176 | 177 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' 178 | if "%MAVEN_BATCH_PAUSE%" == "on" pause 179 | 180 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% 181 | 182 | exit /B %ERROR_CODE% 183 | -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ---------------------------------------------------------------------------- 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # ---------------------------------------------------------------------------- 20 | 21 | # ---------------------------------------------------------------------------- 22 | # Maven Start Up Batch script 23 | # 24 | # Required ENV vars: 25 | # ------------------ 26 | # JAVA_HOME - location of a JDK home dir 27 | # 28 | # Optional ENV vars 29 | # ----------------- 30 | # M2_HOME - location of maven2's installed home dir 31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven 32 | # e.g. to debug Maven itself, use 33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files 35 | # ---------------------------------------------------------------------------- 36 | 37 | if [ -z "$MAVEN_SKIP_RC" ] ; then 38 | 39 | if [ -f /etc/mavenrc ] ; then 40 | . /etc/mavenrc 41 | fi 42 | 43 | if [ -f "$HOME/.mavenrc" ] ; then 44 | . "$HOME/.mavenrc" 45 | fi 46 | 47 | fi 48 | 49 | # OS specific support. $var _must_ be set to either true or false. 50 | cygwin=false; 51 | darwin=false; 52 | mingw=false 53 | case "`uname`" in 54 | CYGWIN*) cygwin=true ;; 55 | MINGW*) mingw=true;; 56 | Darwin*) darwin=true 57 | # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home 58 | # See https://developer.apple.com/library/mac/qa/qa1170/_index.html 59 | if [ -z "$JAVA_HOME" ]; then 60 | if [ -x "/usr/libexec/java_home" ]; then 61 | export JAVA_HOME="`/usr/libexec/java_home`" 62 | else 63 | export JAVA_HOME="/Library/Java/Home" 64 | fi 65 | fi 66 | ;; 67 | esac 68 | 69 | if [ -z "$JAVA_HOME" ] ; then 70 | if [ -r /etc/gentoo-release ] ; then 71 | JAVA_HOME=`java-config --jre-home` 72 | fi 73 | fi 74 | 75 | if [ -z "$M2_HOME" ] ; then 76 | ## resolve links - $0 may be a link to maven's home 77 | PRG="$0" 78 | 79 | # need this for relative symlinks 80 | while [ -h "$PRG" ] ; do 81 | ls=`ls -ld "$PRG"` 82 | link=`expr "$ls" : '.*-> \(.*\)$'` 83 | if expr "$link" : '/.*' > /dev/null; then 84 | PRG="$link" 85 | else 86 | PRG="`dirname "$PRG"`/$link" 87 | fi 88 | done 89 | 90 | saveddir=`pwd` 91 | 92 | M2_HOME=`dirname "$PRG"`/.. 93 | 94 | # make it fully qualified 95 | M2_HOME=`cd "$M2_HOME" && pwd` 96 | 97 | cd "$saveddir" 98 | # echo Using m2 at $M2_HOME 99 | fi 100 | 101 | # For Cygwin, ensure paths are in UNIX format before anything is touched 102 | if $cygwin ; then 103 | [ -n "$M2_HOME" ] && 104 | M2_HOME=`cygpath --unix "$M2_HOME"` 105 | [ -n "$JAVA_HOME" ] && 106 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 107 | [ -n "$CLASSPATH" ] && 108 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` 109 | fi 110 | 111 | # For Mingw, ensure paths are in UNIX format before anything is touched 112 | if $mingw ; then 113 | [ -n "$M2_HOME" ] && 114 | M2_HOME="`(cd "$M2_HOME"; pwd)`" 115 | [ -n "$JAVA_HOME" ] && 116 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" 117 | fi 118 | 119 | if [ -z "$JAVA_HOME" ]; then 120 | javaExecutable="`which javac`" 121 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then 122 | # readlink(1) is not available as standard on Solaris 10. 123 | readLink=`which readlink` 124 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then 125 | if $darwin ; then 126 | javaHome="`dirname \"$javaExecutable\"`" 127 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" 128 | else 129 | javaExecutable="`readlink -f \"$javaExecutable\"`" 130 | fi 131 | javaHome="`dirname \"$javaExecutable\"`" 132 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` 133 | JAVA_HOME="$javaHome" 134 | export JAVA_HOME 135 | fi 136 | fi 137 | fi 138 | 139 | if [ -z "$JAVACMD" ] ; then 140 | if [ -n "$JAVA_HOME" ] ; then 141 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 142 | # IBM's JDK on AIX uses strange locations for the executables 143 | JAVACMD="$JAVA_HOME/jre/sh/java" 144 | else 145 | JAVACMD="$JAVA_HOME/bin/java" 146 | fi 147 | else 148 | JAVACMD="`which java`" 149 | fi 150 | fi 151 | 152 | if [ ! -x "$JAVACMD" ] ; then 153 | echo "Error: JAVA_HOME is not defined correctly." >&2 154 | echo " We cannot execute $JAVACMD" >&2 155 | exit 1 156 | fi 157 | 158 | if [ -z "$JAVA_HOME" ] ; then 159 | echo "Warning: JAVA_HOME environment variable is not set." 160 | fi 161 | 162 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher 163 | 164 | # traverses directory structure from process work directory to filesystem root 165 | # first directory with .mvn subdirectory is considered project base directory 166 | find_maven_basedir() { 167 | 168 | if [ -z "$1" ] 169 | then 170 | echo "Path not specified to find_maven_basedir" 171 | return 1 172 | fi 173 | 174 | basedir="$1" 175 | wdir="$1" 176 | while [ "$wdir" != '/' ] ; do 177 | if [ -d "$wdir"/.mvn ] ; then 178 | basedir=$wdir 179 | break 180 | fi 181 | # workaround for JBEAP-8937 (on Solaris 10/Sparc) 182 | if [ -d "${wdir}" ]; then 183 | wdir=`cd "$wdir/.."; pwd` 184 | fi 185 | # end of workaround 186 | done 187 | echo "${basedir}" 188 | } 189 | 190 | # concatenates all lines of a file 191 | concat_lines() { 192 | if [ -f "$1" ]; then 193 | echo "$(tr -s '\n' ' ' < "$1")" 194 | fi 195 | } 196 | 197 | BASE_DIR=`find_maven_basedir "$(pwd)"` 198 | if [ -z "$BASE_DIR" ]; then 199 | exit 1; 200 | fi 201 | 202 | ########################################################################################## 203 | # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 204 | # This allows using the maven wrapper in projects that prohibit checking in binary data. 205 | ########################################################################################## 206 | if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then 207 | if [ "$MVNW_VERBOSE" = true ]; then 208 | echo "Found .mvn/wrapper/maven-wrapper.jar" 209 | fi 210 | else 211 | if [ "$MVNW_VERBOSE" = true ]; then 212 | echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." 213 | fi 214 | if [ -n "$MVNW_REPOURL" ]; then 215 | jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" 216 | else 217 | jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" 218 | fi 219 | while IFS="=" read key value; do 220 | case "$key" in (wrapperUrl) jarUrl="$value"; break ;; 221 | esac 222 | done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" 223 | if [ "$MVNW_VERBOSE" = true ]; then 224 | echo "Downloading from: $jarUrl" 225 | fi 226 | wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" 227 | if $cygwin; then 228 | wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` 229 | fi 230 | 231 | if command -v wget > /dev/null; then 232 | if [ "$MVNW_VERBOSE" = true ]; then 233 | echo "Found wget ... using wget" 234 | fi 235 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then 236 | wget "$jarUrl" -O "$wrapperJarPath" 237 | else 238 | wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" 239 | fi 240 | elif command -v curl > /dev/null; then 241 | if [ "$MVNW_VERBOSE" = true ]; then 242 | echo "Found curl ... using curl" 243 | fi 244 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then 245 | curl -o "$wrapperJarPath" "$jarUrl" -f 246 | else 247 | curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f 248 | fi 249 | 250 | else 251 | if [ "$MVNW_VERBOSE" = true ]; then 252 | echo "Falling back to using Java to download" 253 | fi 254 | javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" 255 | # For Cygwin, switch paths to Windows format before running javac 256 | if $cygwin; then 257 | javaClass=`cygpath --path --windows "$javaClass"` 258 | fi 259 | if [ -e "$javaClass" ]; then 260 | if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 261 | if [ "$MVNW_VERBOSE" = true ]; then 262 | echo " - Compiling MavenWrapperDownloader.java ..." 263 | fi 264 | # Compiling the Java class 265 | ("$JAVA_HOME/bin/javac" "$javaClass") 266 | fi 267 | if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 268 | # Running the downloader 269 | if [ "$MVNW_VERBOSE" = true ]; then 270 | echo " - Running MavenWrapperDownloader.java ..." 271 | fi 272 | ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") 273 | fi 274 | fi 275 | fi 276 | fi 277 | ########################################################################################## 278 | # End of extension 279 | ########################################################################################## 280 | 281 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} 282 | if [ "$MVNW_VERBOSE" = true ]; then 283 | echo $MAVEN_PROJECTBASEDIR 284 | fi 285 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" 286 | 287 | # For Cygwin, switch paths to Windows format before running java 288 | if $cygwin; then 289 | [ -n "$M2_HOME" ] && 290 | M2_HOME=`cygpath --path --windows "$M2_HOME"` 291 | [ -n "$JAVA_HOME" ] && 292 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` 293 | [ -n "$CLASSPATH" ] && 294 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` 295 | [ -n "$MAVEN_PROJECTBASEDIR" ] && 296 | MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` 297 | fi 298 | 299 | # Provide a "standardized" way to retrieve the CLI args that will 300 | # work with both Windows and non-Windows executions. 301 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" 302 | export MAVEN_CMD_LINE_ARGS 303 | 304 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 305 | 306 | exec "$JAVACMD" \ 307 | $MAVEN_OPTS \ 308 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ 309 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ 310 | ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" 311 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 4 | 4.0.0 5 | 6 | org.utplsql 7 | utplsql-maven-plugin 8 | 3.1.11 9 | maven-plugin 10 | 11 | utPLSQL Maven Plugin 12 | A maven plugin for running Unit Tests with utPLSQL v3+. 13 | https://github.com/utPLSQL/utPLSQL-maven-plugin 14 | 15 | 16 | 17 | Apache License, Version 2.0 18 | http://www.apache.org/licenses/LICENSE-2.0.txt 19 | repo 20 | 21 | 22 | 23 | 24 | 25 | Vinicius Avellar Moreira 26 | utPLSQL.org 27 | http://utplsql.org 28 | 29 | 30 | Simon Martinelli 31 | utPLSQL.org 32 | http://utplsql.org 33 | 34 | 35 | 36 | 37 | scm:git:https://github.com/utPLSQL/utPLSQL-maven-plugin.git 38 | https://github.com/utPLSQL/utPLSQL-maven-plugin 39 | 40 | 41 | 42 | 43 | ossrh 44 | https://oss.sonatype.org/content/repositories/snapshots 45 | 46 | 47 | ossrh 48 | https://oss.sonatype.org/service/local/staging/deploy/maven2/ 49 | 50 | 51 | 52 | 53 | 1.8 54 | 1.8 55 | UTF-8 56 | 57 | 3.5.2 58 | 0.11.0 59 | 5.8.1 60 | 61 | utplsql 62 | https://sonarcloud.io 63 | 64 | 65 | 66 | 67 | org.apache.maven 68 | maven-core 69 | ${maven.version} 70 | provided 71 | 72 | 73 | org.apache.maven.plugin-tools 74 | maven-plugin-annotations 75 | ${maven.version} 76 | provided 77 | 78 | 79 | org.apache.maven.shared 80 | maven-shared-utils 81 | 3.3.4 82 | 83 | 84 | 85 | org.utplsql 86 | utplsql-java-api 87 | 3.1.15 88 | 89 | 90 | 91 | com.oracle.database.jdbc 92 | ojdbc8 93 | 21.3.0.0 94 | 95 | 96 | 97 | org.codehaus.plexus 98 | plexus-utils 99 | 3.1.0 100 | 101 | 102 | 103 | 104 | org.apache.maven 105 | maven-compat 106 | ${maven.version} 107 | test 108 | 109 | 110 | org.apache.maven.plugin-testing 111 | maven-plugin-testing-harness 112 | 3.3.0 113 | test 114 | 115 | 116 | 117 | org.junit.jupiter 118 | junit-jupiter-engine 119 | ${junit.version} 120 | test 121 | 122 | 123 | org.junit.vintage 124 | junit-vintage-engine 125 | ${junit.version} 126 | test 127 | 128 | 129 | 130 | com.soebes.itf.jupiter.extension 131 | itf-jupiter-extension 132 | ${itf.version} 133 | test 134 | 135 | 136 | com.soebes.itf.jupiter.extension 137 | itf-assertj 138 | ${itf.version} 139 | test 140 | 141 | 142 | 143 | org.slf4j 144 | slf4j-simple 145 | 1.7.32 146 | test 147 | 148 | 149 | 150 | 151 | 152 | 153 | org.apache.maven.plugins 154 | maven-surefire-plugin 155 | 2.22.2 156 | 157 | 158 | org.apache.maven.plugins 159 | maven-failsafe-plugin 160 | 2.22.2 161 | 162 | 163 | 164 | integration-test 165 | verify 166 | 167 | 168 | 169 | 170 | 171 | com.soebes.itf.jupiter.extension 172 | itf-maven-plugin 173 | ${itf.version} 174 | 175 | 176 | installing 177 | pre-integration-test 178 | 179 | install 180 | resources-its 181 | 182 | 183 | 184 | 185 | 186 | org.apache.maven.plugins 187 | maven-shade-plugin 188 | 3.2.2 189 | 190 | 191 | package 192 | 193 | shade 194 | 195 | 196 | 197 | 198 | 199 | 200 | org.utplsql:java-api 201 | 202 | 203 | 204 | 205 | 206 | org.apache.maven.plugins 207 | maven-plugin-plugin 208 | ${maven.version} 209 | 210 | utplsql 211 | true 212 | 213 | 214 | 215 | mojo-descriptor 216 | 217 | descriptor 218 | 219 | 220 | 221 | help-goal 222 | 223 | helpmojo 224 | 225 | 226 | 227 | 228 | 229 | com.amashchenko.maven.plugin 230 | gitflow-maven-plugin 231 | 1.16.0 232 | 233 | true 234 | 235 | main 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | coverage 245 | 246 | 247 | 248 | org.jacoco 249 | jacoco-maven-plugin 250 | 0.8.7 251 | 252 | 253 | prepare-agent 254 | 255 | prepare-agent 256 | 257 | 258 | 259 | report 260 | 261 | report 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | release 271 | 272 | 273 | release 274 | 275 | 276 | 277 | 278 | 279 | org.apache.maven.plugins 280 | maven-javadoc-plugin 281 | 3.3.1 282 | 283 | 284 | attach-javadocs 285 | 286 | jar 287 | 288 | 289 | 290 | 291 | 292 | org.apache.maven.plugins 293 | maven-source-plugin 294 | 3.2.1 295 | 296 | 297 | attach-sources 298 | verify 299 | 300 | jar-no-fork 301 | 302 | 303 | 304 | 305 | 306 | org.apache.maven.plugins 307 | maven-gpg-plugin 308 | 3.0.1 309 | 310 | 311 | sign-artifacts 312 | verify 313 | 314 | sign 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | --------------------------------------------------------------------------------