From f13979f3a1e99640e569d00c2f824922c88d3687 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 11 Jul 2023 16:44:31 +0200 Subject: [PATCH 01/11] Update for next development version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b8f50b8..760417b 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.utplsql utplsql-maven-plugin - 3.1.11 + 3.1.12-SNAPSHOT maven-plugin utPLSQL Maven Plugin From 36d6ab3c6a5094d9b0a790e008214da32e7bfa87 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Sat, 31 Aug 2024 14:00:24 +0200 Subject: [PATCH 02/11] Upgrade to Oracle Database Free #74 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- scripts/0_start_db.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3a4e7b..07c5189 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: services: oracle: - image: gvenzl/oracle-xe:21-slim + image: gvenzl/oracle-free:23-slim env: ORACLE_PASSWORD: oracle ports: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4825e34..f5b1c45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: services: oracle: - image: gvenzl/oracle-xe:21-slim + image: gvenzl/oracle-free:23-slim env: ORACLE_PASSWORD: oracle ports: diff --git a/scripts/0_start_db.sh b/scripts/0_start_db.sh index d319407..d1bd8bb 100644 --- a/scripts/0_start_db.sh +++ b/scripts/0_start_db.sh @@ -1 +1 @@ -docker run -d --name ora-utplsql -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-xe:21-slim +docker run -d --name ora-utplsql -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-free:23-slim From 9d60472bd6bf3ba5e1f5c4046047d1bd9dffe37e Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Sat, 31 Aug 2024 14:07:31 +0200 Subject: [PATCH 03/11] User FREEPDB1 SID --- README.md | 2 +- .../java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java | 8 ++------ .../maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml | 2 +- .../plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/include_object/pom.xml | 2 +- .../plugin/UtPlsqlMojoIT/include_object_expr/pom.xml | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml | 2 +- src/test/resources/unit-tests/dbms_output/pom.xml | 2 +- .../unit-tests/default_console_output_behaviour/pom.xml | 2 +- src/test/resources/unit-tests/default_reporter/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/exclude_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_object/pom.xml | 2 +- src/test/resources/unit-tests/include_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_schema_expr/pom.xml | 2 +- .../unit-tests/invalid_sources_directory/pom.xml | 2 +- .../resources/unit-tests/invalid_tests_directory/pom.xml | 2 +- src/test/resources/unit-tests/ora_stuck_timeout/pom.xml | 2 +- src/test/resources/unit-tests/skip_utplsql_tests/pom.xml | 2 +- .../sources_and_tests_parameter_does_not_exist/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../resources/unit-tests/sources_tests_parameters/pom.xml | 2 +- 32 files changed, 33 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index d57328f..c428511 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Please refer to the following usage example for the parameters descriptions: - + url_of_connection diff --git a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java index 6315072..3964c13 100644 --- a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java +++ b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java @@ -12,11 +12,7 @@ import java.io.PrintStream; import java.util.List; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertThrows; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; public class UtPlsqlMojoTest { @@ -308,7 +304,7 @@ public void dbms_output() throws Exception { */ @Test public void db_config_using_system_properties() throws Exception { - System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:xe"); + System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:FREEPDB1"); System.setProperty("dbUser", "UT3"); System.setProperty("dbPass", "UT3"); diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml index 15411c2..36b3693 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml index 22d0869..fbe3782 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml index ee6d13f..d5c2a74 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml index e807d13..b99d1f5 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml index 40759d2..307b956 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml index f0c33da..55c3bed 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml index 961940b..156b956 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml index 2620738..cbe578a 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml index c174c87..605124b 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml index f9264fb..839a6af 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml index 01150a1..b82af37 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml index 3cf0033..432deb2 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:xe + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/dbms_output/pom.xml b/src/test/resources/unit-tests/dbms_output/pom.xml index 4f45635..bf4bb04 100644 --- a/src/test/resources/unit-tests/dbms_output/pom.xml +++ b/src/test/resources/unit-tests/dbms_output/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml index ac6b14c..266f353 100644 --- a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml +++ b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_reporter/pom.xml b/src/test/resources/unit-tests/default_reporter/pom.xml index 8f03e25..a1483af 100644 --- a/src/test/resources/unit-tests/default_reporter/pom.xml +++ b/src/test/resources/unit-tests/default_reporter/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object/pom.xml b/src/test/resources/unit-tests/exclude_object/pom.xml index d65fde3..59c2529 100644 --- a/src/test/resources/unit-tests/exclude_object/pom.xml +++ b/src/test/resources/unit-tests/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object_expr/pom.xml b/src/test/resources/unit-tests/exclude_object_expr/pom.xml index 7993e05..2540641 100644 --- a/src/test/resources/unit-tests/exclude_object_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml index 28df05e..29a9a01 100644 --- a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object/pom.xml b/src/test/resources/unit-tests/include_object/pom.xml index f031df5..b3bcfa4 100644 --- a/src/test/resources/unit-tests/include_object/pom.xml +++ b/src/test/resources/unit-tests/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object_expr/pom.xml b/src/test/resources/unit-tests/include_object_expr/pom.xml index 636098b..c3f43b9 100644 --- a/src/test/resources/unit-tests/include_object_expr/pom.xml +++ b/src/test/resources/unit-tests/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_schema_expr/pom.xml b/src/test/resources/unit-tests/include_schema_expr/pom.xml index f953ec0..95f28dd 100644 --- a/src/test/resources/unit-tests/include_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/include_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml index af6643d..b6b3d5e 100644 --- a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml index c7380ef..af69a88 100644 --- a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml index f04825c..2e3649d 100644 --- a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml +++ b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml index 3e978d5..88e75af 100644 --- a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml +++ b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml index a556a7e..bb59752 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml index a556a7e..bb59752 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml index d5382b4..fe55db1 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml index d33e917..c848bbd 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml @@ -10,7 +10,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml index 6f4c2d0..c07668c 100644 --- a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml +++ b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:xe + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 From f67d92a003aaba57f77dad358c1c56650e68d92e Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Sat, 31 Aug 2024 14:11:48 +0200 Subject: [PATCH 04/11] Fixed JDBC Url --- README.md | 2 +- src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml | 2 +- src/test/resources/unit-tests/dbms_output/pom.xml | 2 +- .../unit-tests/default_console_output_behaviour/pom.xml | 2 +- src/test/resources/unit-tests/default_reporter/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/exclude_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_object/pom.xml | 2 +- src/test/resources/unit-tests/include_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/invalid_sources_directory/pom.xml | 2 +- src/test/resources/unit-tests/invalid_tests_directory/pom.xml | 2 +- src/test/resources/unit-tests/ora_stuck_timeout/pom.xml | 2 +- src/test/resources/unit-tests/skip_utplsql_tests/pom.xml | 2 +- .../sources_and_tests_parameter_does_not_exist/pom.xml | 2 +- .../pom.xml | 2 +- .../sources_and_tests_parameter_have_not_directory_tag/pom.xml | 2 +- .../sources_and_tests_parameter_have_not_includes_tag/pom.xml | 2 +- src/test/resources/unit-tests/sources_tests_parameters/pom.xml | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index c428511..ae7b2d7 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Please refer to the following usage example for the parameters descriptions: - + url_of_connection diff --git a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java index 3964c13..deb7546 100644 --- a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java +++ b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java @@ -304,7 +304,7 @@ public void dbms_output() throws Exception { */ @Test public void db_config_using_system_properties() throws Exception { - System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:FREEPDB1"); + System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521/FREEPDB1"); System.setProperty("dbUser", "UT3"); System.setProperty("dbPass", "UT3"); diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml index 36b3693..4889335 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml index fbe3782..c4a016f 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml index d5c2a74..bcdc456 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml index b99d1f5..df74866 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml index 307b956..0660f2e 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml index 55c3bed..0c2f255 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml index 156b956..e358a2d 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml index cbe578a..3e1fd7f 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml index 605124b..c8e0113 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml index 839a6af..864cb07 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml index b82af37..2403efd 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml index 432deb2..493e0d3 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/dbms_output/pom.xml b/src/test/resources/unit-tests/dbms_output/pom.xml index bf4bb04..7e0ded0 100644 --- a/src/test/resources/unit-tests/dbms_output/pom.xml +++ b/src/test/resources/unit-tests/dbms_output/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml index 266f353..60c5437 100644 --- a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml +++ b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_reporter/pom.xml b/src/test/resources/unit-tests/default_reporter/pom.xml index a1483af..c5eec78 100644 --- a/src/test/resources/unit-tests/default_reporter/pom.xml +++ b/src/test/resources/unit-tests/default_reporter/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object/pom.xml b/src/test/resources/unit-tests/exclude_object/pom.xml index 59c2529..c5a1b47 100644 --- a/src/test/resources/unit-tests/exclude_object/pom.xml +++ b/src/test/resources/unit-tests/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object_expr/pom.xml b/src/test/resources/unit-tests/exclude_object_expr/pom.xml index 2540641..28e2b2b 100644 --- a/src/test/resources/unit-tests/exclude_object_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml index 29a9a01..97e900f 100644 --- a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object/pom.xml b/src/test/resources/unit-tests/include_object/pom.xml index b3bcfa4..d15d710 100644 --- a/src/test/resources/unit-tests/include_object/pom.xml +++ b/src/test/resources/unit-tests/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object_expr/pom.xml b/src/test/resources/unit-tests/include_object_expr/pom.xml index c3f43b9..ddd1e1d 100644 --- a/src/test/resources/unit-tests/include_object_expr/pom.xml +++ b/src/test/resources/unit-tests/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_schema_expr/pom.xml b/src/test/resources/unit-tests/include_schema_expr/pom.xml index 95f28dd..09d3793 100644 --- a/src/test/resources/unit-tests/include_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/include_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml index b6b3d5e..74d9946 100644 --- a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml index af69a88..e086711 100644 --- a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml index 2e3649d..4bcb833 100644 --- a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml +++ b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml index 88e75af..4a0809e 100644 --- a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml +++ b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml index bb59752..123d569 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml index bb59752..123d569 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml index fe55db1..8f6fd16 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml index c848bbd..9c1550e 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml @@ -10,7 +10,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml index c07668c..5588400 100644 --- a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml +++ b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 UT3 UT3 From 482b7f1e2b63d28a7095127cd8a2270f5f150a2f Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Sat, 31 Aug 2024 14:25:43 +0200 Subject: [PATCH 05/11] Updated scripts for new DB --- .gitignore | 460 ++++++++++++++++++++++++++++++ scripts/0_start_db.sh | 0 scripts/1_install_utplsql.sh | 2 +- scripts/2_install_demo_project.sh | 8 +- 4 files changed, 465 insertions(+), 5 deletions(-) mode change 100644 => 100755 scripts/0_start_db.sh mode change 100644 => 100755 scripts/1_install_utplsql.sh mode change 100644 => 100755 scripts/2_install_demo_project.sh diff --git a/.gitignore b/.gitignore index ed6f99b..4325a42 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,463 @@ doc/ /utPLSQL/ /utPLSQL.zip /tree.txt +/scripts/utPLSQL.zip +/scripts/utPLSQL/docs/about/authors.html +/scripts/utPLSQL/docs/about/license.html +/scripts/utPLSQL/docs/about/project-details.html +/scripts/utPLSQL/docs/about/support.html +/scripts/utPLSQL/docs/assets/images/favicon.png +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ar.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.da.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.de.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.du.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.el.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.es.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.fi.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.fr.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.he.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hi.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hu.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hy.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.it.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ja.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.jp.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.kn.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ko.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.multi.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.nl.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.no.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.pt.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ro.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ru.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.sa.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.sv.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ta.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.te.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.th.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.tr.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.vi.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.zh.min.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/tinyseg.js +/scripts/utPLSQL/docs/assets/javascripts/lunr/wordcut.js +/scripts/utPLSQL/docs/assets/javascripts/workers/search.b8dbb3d2.min.js +/scripts/utPLSQL/docs/assets/javascripts/workers/search.b8dbb3d2.min.js.map +/scripts/utPLSQL/docs/assets/javascripts/bundle.8fd75fb4.min.js +/scripts/utPLSQL/docs/assets/javascripts/bundle.8fd75fb4.min.js.map +/scripts/utPLSQL/docs/assets/stylesheets/main.7e359304.min.css +/scripts/utPLSQL/docs/assets/stylesheets/main.7e359304.min.css.map +/scripts/utPLSQL/docs/assets/stylesheets/palette.06af60db.min.css +/scripts/utPLSQL/docs/assets/stylesheets/palette.06af60db.min.css.map +/scripts/utPLSQL/docs/assets/favicon.png +/scripts/utPLSQL/docs/assets/icon-transparent.png +/scripts/utPLSQL/docs/images/3_steps_to_run_utPLSQL.gif +/scripts/utPLSQL/docs/images/coverage_html_details.png +/scripts/utPLSQL/docs/images/coverage_html_summary.png +/scripts/utPLSQL/docs/images/documentation_reporter.png +/scripts/utPLSQL/docs/images/documentation_reporter_color.png +/scripts/utPLSQL/docs/images/example_1_coverage_mapping.png +/scripts/utPLSQL/docs/images/example_1_test_mapping.png +/scripts/utPLSQL/docs/images/example_2_coverage_mapping.png +/scripts/utPLSQL/docs/images/example_2_test_mapping.png +/scripts/utPLSQL/docs/images/example_3_coverage_mapping.png +/scripts/utPLSQL/docs/images/example_3_test_mapping.png +/scripts/utPLSQL/docs/images/example_4_coverage_mapping.png +/scripts/utPLSQL/docs/images/example_4_test_mapping.png +/scripts/utPLSQL/docs/images/extended_coverage_html_line.png +/scripts/utPLSQL/docs/images/extended_coverage_html_summary.png +/scripts/utPLSQL/docs/images/junit_errors.png +/scripts/utPLSQL/docs/images/junit_summary.png +/scripts/utPLSQL/docs/images/supported_by_redgate_100.png +/scripts/utPLSQL/docs/images/teamcity_report_example.png +/scripts/utPLSQL/docs/images/teamcity_report_example_errors.png +/scripts/utPLSQL/docs/images/tfs_details.png +/scripts/utPLSQL/docs/images/tfs_summary.png +/scripts/utPLSQL/docs/images/utPLSQL-testing-framework-transparent_120.png +/scripts/utPLSQL/docs/images/venn21.gif +/scripts/utPLSQL/docs/images/venn22.gif +/scripts/utPLSQL/docs/stylesheets/extra.css +/scripts/utPLSQL/docs/userguide/advanced_data_comparison.html +/scripts/utPLSQL/docs/userguide/annotations.html +/scripts/utPLSQL/docs/userguide/best-practices.html +/scripts/utPLSQL/docs/userguide/exception-reporting.html +/scripts/utPLSQL/docs/userguide/expectations.html +/scripts/utPLSQL/docs/userguide/getting-started.html +/scripts/utPLSQL/docs/userguide/install.html +/scripts/utPLSQL/docs/userguide/querying_suites.html +/scripts/utPLSQL/docs/userguide/reporters.html +/scripts/utPLSQL/docs/userguide/running-unit-tests.html +/scripts/utPLSQL/docs/userguide/upgrade.html +/scripts/utPLSQL/docs/404.html +/scripts/utPLSQL/docs/compare_version2_to_3.html +/scripts/utPLSQL/docs/index.html +/scripts/utPLSQL/docs/sitemap.xml +/scripts/utPLSQL/examples/award_bonus/award_bonus.sql +/scripts/utPLSQL/examples/award_bonus/employees_test.sql +/scripts/utPLSQL/examples/award_bonus/run_award_bonus_test.sql +/scripts/utPLSQL/examples/award_bonus/test_award_bonus.pkg +/scripts/utPLSQL/examples/between_string/betwnstr.sql +/scripts/utPLSQL/examples/between_string/run_betwnstr_test.sql +/scripts/utPLSQL/examples/between_string/run_betwnstr_test_coverage.sql +/scripts/utPLSQL/examples/between_string/test_betwnstr.pkb +/scripts/utPLSQL/examples/between_string/test_betwnstr.pks +/scripts/utPLSQL/examples/custom_reporters/run_ut_custom_reporter.sql +/scripts/utPLSQL/examples/custom_reporters/run_ut_expectations_reporter.sql +/scripts/utPLSQL/examples/custom_reporters/ut_custom_reporter.tpb +/scripts/utPLSQL/examples/custom_reporters/ut_custom_reporter.tps +/scripts/utPLSQL/examples/custom_reporters/ut_expectations_reporter.tpb +/scripts/utPLSQL/examples/custom_reporters/ut_expectations_reporter.tps +/scripts/utPLSQL/examples/demo_of_expectations/demo_equal_matcher.sql +/scripts/utPLSQL/examples/demo_of_expectations/drop_demo_equal_matcher.sql +/scripts/utPLSQL/examples/demo_of_expectations/run.sql +/scripts/utPLSQL/examples/developer_examples/RunExampleTestAnnotationsParsingTimeHugePackage.sql +/scripts/utPLSQL/examples/developer_examples/RunExampleTestSuite.sql +/scripts/utPLSQL/examples/developer_examples/RunExampleTestSuiteWithCompositeReporter.sql +/scripts/utPLSQL/examples/developer_examples/tst_pkg_huge.pks +/scripts/utPLSQL/examples/developer_examples/ut_exampletest.pkb +/scripts/utPLSQL/examples/developer_examples/ut_exampletest.pks +/scripts/utPLSQL/examples/developer_examples/ut_exampletest2.pkb +/scripts/utPLSQL/examples/developer_examples/ut_exampletest2.pks +/scripts/utPLSQL/examples/remove_rooms_by_name/remove_rooms_by_name.sql +/scripts/utPLSQL/examples/remove_rooms_by_name/rooms.sql +/scripts/utPLSQL/examples/remove_rooms_by_name/run_remove_rooms_by_name_test.sql +/scripts/utPLSQL/examples/remove_rooms_by_name/test_remove_rooms_by_name.pkg +/scripts/utPLSQL/examples/demo_expectations.pck +/scripts/utPLSQL/examples/department.tps +/scripts/utPLSQL/examples/departments.tps +/scripts/utPLSQL/examples/readme.md +/scripts/utPLSQL/examples/RunAllExamples.sql +/scripts/utPLSQL/examples/RunAllExamplesAsTests.sql +/scripts/utPLSQL/examples/RunCustomReportersExamples.sql +/scripts/utPLSQL/examples/RunDeveloperExamples.sql +/scripts/utPLSQL/examples/RunExampleTestAnnotationBasedForCurrentSchema.sql +/scripts/utPLSQL/examples/RunExpectations.sql +/scripts/utPLSQL/examples/RunUserExamples.sql +/scripts/utPLSQL/examples/RunWithDocumentationReporter.sql +/scripts/utPLSQL/examples/test_pkg1.pck +/scripts/utPLSQL/examples/test_pkg2.pck +/scripts/utPLSQL/source/api/be_between.syn +/scripts/utPLSQL/source/api/be_empty.syn +/scripts/utPLSQL/source/api/be_false.syn +/scripts/utPLSQL/source/api/be_greater_or_equal.syn +/scripts/utPLSQL/source/api/be_greater_than.syn +/scripts/utPLSQL/source/api/be_less_or_equal.syn +/scripts/utPLSQL/source/api/be_less_than.syn +/scripts/utPLSQL/source/api/be_like.syn +/scripts/utPLSQL/source/api/be_not_null.syn +/scripts/utPLSQL/source/api/be_null.syn +/scripts/utPLSQL/source/api/be_true.syn +/scripts/utPLSQL/source/api/be_within.syn +/scripts/utPLSQL/source/api/be_within_pct.syn +/scripts/utPLSQL/source/api/contain.syn +/scripts/utPLSQL/source/api/equal.syn +/scripts/utPLSQL/source/api/have_count.syn +/scripts/utPLSQL/source/api/match.syn +/scripts/utPLSQL/source/api/ut.pkb +/scripts/utPLSQL/source/api/ut.pks +/scripts/utPLSQL/source/api/ut_runner.pkb +/scripts/utPLSQL/source/api/ut_runner.pks +/scripts/utPLSQL/source/api/ut_suite_item_info.tpb +/scripts/utPLSQL/source/api/ut_suite_item_info.tps +/scripts/utPLSQL/source/api/ut_suite_items_info.tps +/scripts/utPLSQL/source/core/annotations/ut_annotated_object.tps +/scripts/utPLSQL/source/core/annotations/ut_annotated_objects.tps +/scripts/utPLSQL/source/core/annotations/ut_annotation.tps +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache.sql +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_info.sql +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_manager.pkb +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_manager.pks +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_schema.sql +/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_seq.sql +/scripts/utPLSQL/source/core/annotations/ut_annotation_manager.pkb +/scripts/utPLSQL/source/core/annotations/ut_annotation_manager.pks +/scripts/utPLSQL/source/core/annotations/ut_annotation_obj_cache_info.tps +/scripts/utPLSQL/source/core/annotations/ut_annotation_objs_cache_info.tps +/scripts/utPLSQL/source/core/annotations/ut_annotation_parser.pkb +/scripts/utPLSQL/source/core/annotations/ut_annotation_parser.pks +/scripts/utPLSQL/source/core/annotations/ut_annotations.tps +/scripts/utPLSQL/source/core/annotations/ut_trigger_annotation_parsing.trg +/scripts/utPLSQL/source/core/annotations/ut_trigger_check.pkb +/scripts/utPLSQL/source/core/annotations/ut_trigger_check.pks +/scripts/utPLSQL/source/core/coverage/dbms_plssqlcode.sql +/scripts/utPLSQL/source/core/coverage/proftab.sql +/scripts/utPLSQL/source/core/coverage/ut_coverage.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_block.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage_block.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_block.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_block.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_profiler.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_profiler.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_profiler.pkb +/scripts/utPLSQL/source/core/coverage/ut_coverage_profiler.pks +/scripts/utPLSQL/source/core/coverage/ut_coverage_reporter_base.tpb +/scripts/utPLSQL/source/core/coverage/ut_coverage_reporter_base.tps +/scripts/utPLSQL/source/core/coverage/ut_coverage_runs.sql +/scripts/utPLSQL/source/core/coverage/ut_coverage_sources_tmp.sql +/scripts/utPLSQL/source/core/events/ut_event_item.tps +/scripts/utPLSQL/source/core/events/ut_event_listener.tps +/scripts/utPLSQL/source/core/events/ut_event_manager.pkb +/scripts/utPLSQL/source/core/events/ut_event_manager.pks +/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_base.tpb +/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_base.tps +/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_info_tmp.sql +/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_tmp.sql +/scripts/utPLSQL/source/core/output_buffers/ut_output_bulk_buffer.tpb +/scripts/utPLSQL/source/core/output_buffers/ut_output_bulk_buffer.tps +/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_buffer_tmp.sql +/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_table_buffer.tpb +/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_table_buffer.tps +/scripts/utPLSQL/source/core/output_buffers/ut_output_data_row.tps +/scripts/utPLSQL/source/core/output_buffers/ut_output_data_rows.tps +/scripts/utPLSQL/source/core/output_buffers/ut_output_table_buffer.tpb +/scripts/utPLSQL/source/core/output_buffers/ut_output_table_buffer.tps +/scripts/utPLSQL/source/core/session_context/ut_session_context.pkb +/scripts/utPLSQL/source/core/session_context/ut_session_context.pks +/scripts/utPLSQL/source/core/session_context/ut_session_info.tpb +/scripts/utPLSQL/source/core/session_context/ut_session_info.tps +/scripts/utPLSQL/source/core/types/ut_console_reporter_base.tpb +/scripts/utPLSQL/source/core/types/ut_console_reporter_base.tps +/scripts/utPLSQL/source/core/types/ut_coverage_options.tpb +/scripts/utPLSQL/source/core/types/ut_coverage_options.tps +/scripts/utPLSQL/source/core/types/ut_executable.tpb +/scripts/utPLSQL/source/core/types/ut_executable.tps +/scripts/utPLSQL/source/core/types/ut_executable_test.tpb +/scripts/utPLSQL/source/core/types/ut_executable_test.tps +/scripts/utPLSQL/source/core/types/ut_executables.tps +/scripts/utPLSQL/source/core/types/ut_expectation_result.tpb +/scripts/utPLSQL/source/core/types/ut_expectation_result.tps +/scripts/utPLSQL/source/core/types/ut_expectation_results.tps +/scripts/utPLSQL/source/core/types/ut_file_mapping.tpb +/scripts/utPLSQL/source/core/types/ut_file_mapping.tps +/scripts/utPLSQL/source/core/types/ut_file_mappings.tps +/scripts/utPLSQL/source/core/types/ut_integer_list.tps +/scripts/utPLSQL/source/core/types/ut_key_value_pair.tps +/scripts/utPLSQL/source/core/types/ut_key_value_pairs.tps +/scripts/utPLSQL/source/core/types/ut_logical_suite.tpb +/scripts/utPLSQL/source/core/types/ut_logical_suite.tps +/scripts/utPLSQL/source/core/types/ut_object_name.tpb +/scripts/utPLSQL/source/core/types/ut_object_name.tps +/scripts/utPLSQL/source/core/types/ut_object_names.tps +/scripts/utPLSQL/source/core/types/ut_output_reporter_base.tpb +/scripts/utPLSQL/source/core/types/ut_output_reporter_base.tps +/scripts/utPLSQL/source/core/types/ut_path_item.tpb +/scripts/utPLSQL/source/core/types/ut_path_item.tps +/scripts/utPLSQL/source/core/types/ut_path_items.tps +/scripts/utPLSQL/source/core/types/ut_reporter_base.tpb +/scripts/utPLSQL/source/core/types/ut_reporter_base.tps +/scripts/utPLSQL/source/core/types/ut_reporter_info.tps +/scripts/utPLSQL/source/core/types/ut_reporters.tps +/scripts/utPLSQL/source/core/types/ut_reporters_info.tps +/scripts/utPLSQL/source/core/types/ut_results_counter.tpb +/scripts/utPLSQL/source/core/types/ut_results_counter.tps +/scripts/utPLSQL/source/core/types/ut_run.tpb +/scripts/utPLSQL/source/core/types/ut_run.tps +/scripts/utPLSQL/source/core/types/ut_run_info.tpb +/scripts/utPLSQL/source/core/types/ut_run_info.tps +/scripts/utPLSQL/source/core/types/ut_stack.tpb +/scripts/utPLSQL/source/core/types/ut_stack.tps +/scripts/utPLSQL/source/core/types/ut_suite.tpb +/scripts/utPLSQL/source/core/types/ut_suite.tps +/scripts/utPLSQL/source/core/types/ut_suite_cache_row.tps +/scripts/utPLSQL/source/core/types/ut_suite_cache_rows.tps +/scripts/utPLSQL/source/core/types/ut_suite_context.tpb +/scripts/utPLSQL/source/core/types/ut_suite_context.tps +/scripts/utPLSQL/source/core/types/ut_suite_item.tpb +/scripts/utPLSQL/source/core/types/ut_suite_item.tps +/scripts/utPLSQL/source/core/types/ut_suite_items.tps +/scripts/utPLSQL/source/core/types/ut_test.tpb +/scripts/utPLSQL/source/core/types/ut_test.tps +/scripts/utPLSQL/source/core/types/ut_varchar2_list.tps +/scripts/utPLSQL/source/core/types/ut_varchar2_rows.tps +/scripts/utPLSQL/source/core/ut_dbms_output_cache.sql +/scripts/utPLSQL/source/core/ut_expectation_processor.pkb +/scripts/utPLSQL/source/core/ut_expectation_processor.pks +/scripts/utPLSQL/source/core/ut_file_mapper.pkb +/scripts/utPLSQL/source/core/ut_file_mapper.pks +/scripts/utPLSQL/source/core/ut_metadata.pkb +/scripts/utPLSQL/source/core/ut_metadata.pks +/scripts/utPLSQL/source/core/ut_savepoint_seq.sql +/scripts/utPLSQL/source/core/ut_suite_builder.pkb +/scripts/utPLSQL/source/core/ut_suite_builder.pks +/scripts/utPLSQL/source/core/ut_suite_cache.sql +/scripts/utPLSQL/source/core/ut_suite_cache_manager.pkb +/scripts/utPLSQL/source/core/ut_suite_cache_manager.pks +/scripts/utPLSQL/source/core/ut_suite_cache_package.sql +/scripts/utPLSQL/source/core/ut_suite_cache_schema.sql +/scripts/utPLSQL/source/core/ut_suite_cache_seq.sql +/scripts/utPLSQL/source/core/ut_suite_manager.pkb +/scripts/utPLSQL/source/core/ut_suite_manager.pks +/scripts/utPLSQL/source/core/ut_suite_tag_filter.pkb +/scripts/utPLSQL/source/core/ut_suite_tag_filter.pks +/scripts/utPLSQL/source/core/ut_utils.pkb +/scripts/utPLSQL/source/core/ut_utils.pks +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_diff_tmp.sql +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_helper.pkb +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_helper.pks +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_tmp.sql +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_value.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_value.tps +/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column.tps +/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column_tab.tps +/scripts/utPLSQL/source/expectations/data_values/ut_cursor_details.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_cursor_details.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_anydata.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_anydata.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_blob.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_blob.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_boolean.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_boolean.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_clob.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_clob.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_date.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_date.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_dsinterval.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_dsinterval.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_json.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_json.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_number.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_number.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_refcursor.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_refcursor.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_ltz.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_ltz.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_tz.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_tz.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_varchar2.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_varchar2.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_xmltype.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_xmltype.tps +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_yminterval.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_data_value_yminterval.tps +/scripts/utPLSQL/source/expectations/data_values/ut_json_data_diff_tmp.sql +/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf.tps +/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf_tab.tps +/scripts/utPLSQL/source/expectations/data_values/ut_json_tree_details.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_json_tree_details.tps +/scripts/utPLSQL/source/expectations/data_values/ut_key_anyval_pair.tps +/scripts/utPLSQL/source/expectations/data_values/ut_key_anyval_pairs.tps +/scripts/utPLSQL/source/expectations/data_values/ut_key_anyvalues.tpb +/scripts/utPLSQL/source/expectations/data_values/ut_key_anyvalues.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_between.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_between.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_empty.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_empty.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_false.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_false.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_or_equal.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_or_equal.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_than.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_than.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_less_or_equal.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_less_or_equal.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_less_than.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_less_than.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_like.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_like.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_not_null.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_not_null.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_null.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_null.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_true.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_true.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_within.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_within.tps +/scripts/utPLSQL/source/expectations/matchers/ut_be_within_helper.pkb +/scripts/utPLSQL/source/expectations/matchers/ut_be_within_helper.pks +/scripts/utPLSQL/source/expectations/matchers/ut_be_within_pct.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_be_within_pct.tps +/scripts/utPLSQL/source/expectations/matchers/ut_comparison_matcher.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_comparison_matcher.tps +/scripts/utPLSQL/source/expectations/matchers/ut_contain.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_contain.tps +/scripts/utPLSQL/source/expectations/matchers/ut_equal.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_equal.tps +/scripts/utPLSQL/source/expectations/matchers/ut_have_count.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_have_count.tps +/scripts/utPLSQL/source/expectations/matchers/ut_match.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_match.tps +/scripts/utPLSQL/source/expectations/matchers/ut_matcher.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_matcher.tps +/scripts/utPLSQL/source/expectations/matchers/ut_matcher_base.tps +/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options.tps +/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options_items.tpb +/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options_items.tps +/scripts/utPLSQL/source/expectations/json_objects_specs.sql +/scripts/utPLSQL/source/expectations/ut_expectation.tpb +/scripts/utPLSQL/source/expectations/ut_expectation.tps +/scripts/utPLSQL/source/expectations/ut_expectation_base.tpb +/scripts/utPLSQL/source/expectations/ut_expectation_base.tps +/scripts/utPLSQL/source/expectations/ut_expectation_compound.tpb +/scripts/utPLSQL/source/expectations/ut_expectation_compound.tps +/scripts/utPLSQL/source/expectations/ut_expectation_json.tpb +/scripts/utPLSQL/source/expectations/ut_expectation_json.tps +/scripts/utPLSQL/source/reporters/ut_ansiconsole_helper.pkb +/scripts/utPLSQL/source/reporters/ut_ansiconsole_helper.pks +/scripts/utPLSQL/source/reporters/ut_coverage_cobertura_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_coverage_cobertura_reporter.tps +/scripts/utPLSQL/source/reporters/ut_coverage_html_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_coverage_html_reporter.tps +/scripts/utPLSQL/source/reporters/ut_coverage_report_html_helper.pkb +/scripts/utPLSQL/source/reporters/ut_coverage_report_html_helper.pks +/scripts/utPLSQL/source/reporters/ut_coverage_sonar_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_coverage_sonar_reporter.tps +/scripts/utPLSQL/source/reporters/ut_coveralls_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_coveralls_reporter.tps +/scripts/utPLSQL/source/reporters/ut_debug_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_debug_reporter.tps +/scripts/utPLSQL/source/reporters/ut_documentation_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_documentation_reporter.tps +/scripts/utPLSQL/source/reporters/ut_junit_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_junit_reporter.tps +/scripts/utPLSQL/source/reporters/ut_realtime_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_realtime_reporter.tps +/scripts/utPLSQL/source/reporters/ut_sonar_test_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_sonar_test_reporter.tps +/scripts/utPLSQL/source/reporters/ut_teamcity_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_teamcity_reporter.tps +/scripts/utPLSQL/source/reporters/ut_teamcity_reporter_helper.pkb +/scripts/utPLSQL/source/reporters/ut_teamcity_reporter_helper.pks +/scripts/utPLSQL/source/reporters/ut_tfs_junit_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_tfs_junit_reporter.tps +/scripts/utPLSQL/source/reporters/ut_xunit_reporter.tpb +/scripts/utPLSQL/source/reporters/ut_xunit_reporter.tps +/scripts/utPLSQL/source/check_object_grants.sql +/scripts/utPLSQL/source/check_sys_grants.sql +/scripts/utPLSQL/source/create_grants.sql +/scripts/utPLSQL/source/create_synonyms.sql +/scripts/utPLSQL/source/create_synonyms_and_grants_for_public.sql +/scripts/utPLSQL/source/create_user_grants.sql +/scripts/utPLSQL/source/create_user_synonyms.sql +/scripts/utPLSQL/source/create_utplsql_owner.sql +/scripts/utPLSQL/source/define_ut3_owner_param.sql +/scripts/utPLSQL/source/dummy.sql +/scripts/utPLSQL/source/install.log +/scripts/utPLSQL/source/install.sql +/scripts/utPLSQL/source/install_above_12_1.sql +/scripts/utPLSQL/source/install_component.sql +/scripts/utPLSQL/source/install_ddl_trigger.sql +/scripts/utPLSQL/source/install_headless.sql +/scripts/utPLSQL/source/install_headless_with_trigger.sql +/scripts/utPLSQL/source/set_install_params.sql +/scripts/utPLSQL/source/uninstall.sql +/scripts/utPLSQL/source/uninstall_all.sql +/scripts/utPLSQL/source/uninstall_coverage_tables.sql +/scripts/utPLSQL/source/uninstall_objects.sql +/scripts/utPLSQL/source/uninstall_synonyms.sql +/scripts/utPLSQL/BUILD_NO +/scripts/utPLSQL/CODE_OF_CONDUCT.md +/scripts/utPLSQL/CONTRIBUTING.md +/scripts/utPLSQL/LICENSE +/scripts/utPLSQL/mkdocs_offline.yml +/scripts/utPLSQL/readme.md +/scripts/utPLSQL/VERSION diff --git a/scripts/0_start_db.sh b/scripts/0_start_db.sh old mode 100644 new mode 100755 diff --git a/scripts/1_install_utplsql.sh b/scripts/1_install_utplsql.sh old mode 100644 new mode 100755 index bb6577c..4b803f2 --- a/scripts/1_install_utplsql.sh +++ b/scripts/1_install_utplsql.sh @@ -5,4 +5,4 @@ curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip unzip -q utPLSQL.zip docker run --rm -v $(pwd)/utPLSQL:/utPLSQL -w /utPLSQL/source --network host \ - --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@//127.0.0.1:1521/XE as sysdba @install_headless.sql UT3 UT3 users + --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@//127.0.0.1:1521/FREEPDB1 as sysdba @install_headless.sql UT3 UT3 users diff --git a/scripts/2_install_demo_project.sh b/scripts/2_install_demo_project.sh old mode 100644 new mode 100755 index a4089b1..319b8a8 --- a/scripts/2_install_demo_project.sh +++ b/scripts/2_install_demo_project.sh @@ -1,11 +1,11 @@ docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - sys/oracle@//127.0.0.1:1521/XE as sysdba @scripts/sql/create_users.sql + sys/oracle@//127.0.0.1:1521/FREEPDB1 as sysdba @scripts/sql/create_users.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - app/pass@//127.0.0.1:1521/XE @scripts/sql/create_app_objects.sql + app/pass@//127.0.0.1:1521/FREEPDB1 @scripts/sql/create_app_objects.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - code_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_source_owner_objects.sql + code_owner/pass@//127.0.0.1:1521/ @scripts/sql/create_source_owner_objects.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - tests_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_tests_owner_objects.sql + tests_owner/pass@//127.0.0.1:1521/FREEPDB1 @scripts/sql/create_tests_owner_objects.sql From 6464650f9fa90eb5d81b2406bd72b1e0b3059ff9 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:18:36 +0200 Subject: [PATCH 06/11] Revert "Updated scripts for new DB" This reverts commit 482b7f1e2b63d28a7095127cd8a2270f5f150a2f. --- .gitignore | 460 ------------------------------ scripts/0_start_db.sh | 0 scripts/1_install_utplsql.sh | 2 +- scripts/2_install_demo_project.sh | 8 +- 4 files changed, 5 insertions(+), 465 deletions(-) mode change 100755 => 100644 scripts/0_start_db.sh mode change 100755 => 100644 scripts/1_install_utplsql.sh mode change 100755 => 100644 scripts/2_install_demo_project.sh diff --git a/.gitignore b/.gitignore index 4325a42..ed6f99b 100644 --- a/.gitignore +++ b/.gitignore @@ -27,463 +27,3 @@ doc/ /utPLSQL/ /utPLSQL.zip /tree.txt -/scripts/utPLSQL.zip -/scripts/utPLSQL/docs/about/authors.html -/scripts/utPLSQL/docs/about/license.html -/scripts/utPLSQL/docs/about/project-details.html -/scripts/utPLSQL/docs/about/support.html -/scripts/utPLSQL/docs/assets/images/favicon.png -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ar.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.da.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.de.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.du.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.el.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.es.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.fi.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.fr.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.he.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hi.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hu.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.hy.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.it.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ja.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.jp.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.kn.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ko.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.multi.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.nl.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.no.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.pt.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ro.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ru.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.sa.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.sv.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.ta.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.te.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.th.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.tr.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.vi.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/min/lunr.zh.min.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/tinyseg.js -/scripts/utPLSQL/docs/assets/javascripts/lunr/wordcut.js -/scripts/utPLSQL/docs/assets/javascripts/workers/search.b8dbb3d2.min.js -/scripts/utPLSQL/docs/assets/javascripts/workers/search.b8dbb3d2.min.js.map -/scripts/utPLSQL/docs/assets/javascripts/bundle.8fd75fb4.min.js -/scripts/utPLSQL/docs/assets/javascripts/bundle.8fd75fb4.min.js.map -/scripts/utPLSQL/docs/assets/stylesheets/main.7e359304.min.css -/scripts/utPLSQL/docs/assets/stylesheets/main.7e359304.min.css.map -/scripts/utPLSQL/docs/assets/stylesheets/palette.06af60db.min.css -/scripts/utPLSQL/docs/assets/stylesheets/palette.06af60db.min.css.map -/scripts/utPLSQL/docs/assets/favicon.png -/scripts/utPLSQL/docs/assets/icon-transparent.png -/scripts/utPLSQL/docs/images/3_steps_to_run_utPLSQL.gif -/scripts/utPLSQL/docs/images/coverage_html_details.png -/scripts/utPLSQL/docs/images/coverage_html_summary.png -/scripts/utPLSQL/docs/images/documentation_reporter.png -/scripts/utPLSQL/docs/images/documentation_reporter_color.png -/scripts/utPLSQL/docs/images/example_1_coverage_mapping.png -/scripts/utPLSQL/docs/images/example_1_test_mapping.png -/scripts/utPLSQL/docs/images/example_2_coverage_mapping.png -/scripts/utPLSQL/docs/images/example_2_test_mapping.png -/scripts/utPLSQL/docs/images/example_3_coverage_mapping.png -/scripts/utPLSQL/docs/images/example_3_test_mapping.png -/scripts/utPLSQL/docs/images/example_4_coverage_mapping.png -/scripts/utPLSQL/docs/images/example_4_test_mapping.png -/scripts/utPLSQL/docs/images/extended_coverage_html_line.png -/scripts/utPLSQL/docs/images/extended_coverage_html_summary.png -/scripts/utPLSQL/docs/images/junit_errors.png -/scripts/utPLSQL/docs/images/junit_summary.png -/scripts/utPLSQL/docs/images/supported_by_redgate_100.png -/scripts/utPLSQL/docs/images/teamcity_report_example.png -/scripts/utPLSQL/docs/images/teamcity_report_example_errors.png -/scripts/utPLSQL/docs/images/tfs_details.png -/scripts/utPLSQL/docs/images/tfs_summary.png -/scripts/utPLSQL/docs/images/utPLSQL-testing-framework-transparent_120.png -/scripts/utPLSQL/docs/images/venn21.gif -/scripts/utPLSQL/docs/images/venn22.gif -/scripts/utPLSQL/docs/stylesheets/extra.css -/scripts/utPLSQL/docs/userguide/advanced_data_comparison.html -/scripts/utPLSQL/docs/userguide/annotations.html -/scripts/utPLSQL/docs/userguide/best-practices.html -/scripts/utPLSQL/docs/userguide/exception-reporting.html -/scripts/utPLSQL/docs/userguide/expectations.html -/scripts/utPLSQL/docs/userguide/getting-started.html -/scripts/utPLSQL/docs/userguide/install.html -/scripts/utPLSQL/docs/userguide/querying_suites.html -/scripts/utPLSQL/docs/userguide/reporters.html -/scripts/utPLSQL/docs/userguide/running-unit-tests.html -/scripts/utPLSQL/docs/userguide/upgrade.html -/scripts/utPLSQL/docs/404.html -/scripts/utPLSQL/docs/compare_version2_to_3.html -/scripts/utPLSQL/docs/index.html -/scripts/utPLSQL/docs/sitemap.xml -/scripts/utPLSQL/examples/award_bonus/award_bonus.sql -/scripts/utPLSQL/examples/award_bonus/employees_test.sql -/scripts/utPLSQL/examples/award_bonus/run_award_bonus_test.sql -/scripts/utPLSQL/examples/award_bonus/test_award_bonus.pkg -/scripts/utPLSQL/examples/between_string/betwnstr.sql -/scripts/utPLSQL/examples/between_string/run_betwnstr_test.sql -/scripts/utPLSQL/examples/between_string/run_betwnstr_test_coverage.sql -/scripts/utPLSQL/examples/between_string/test_betwnstr.pkb -/scripts/utPLSQL/examples/between_string/test_betwnstr.pks -/scripts/utPLSQL/examples/custom_reporters/run_ut_custom_reporter.sql -/scripts/utPLSQL/examples/custom_reporters/run_ut_expectations_reporter.sql -/scripts/utPLSQL/examples/custom_reporters/ut_custom_reporter.tpb -/scripts/utPLSQL/examples/custom_reporters/ut_custom_reporter.tps -/scripts/utPLSQL/examples/custom_reporters/ut_expectations_reporter.tpb -/scripts/utPLSQL/examples/custom_reporters/ut_expectations_reporter.tps -/scripts/utPLSQL/examples/demo_of_expectations/demo_equal_matcher.sql -/scripts/utPLSQL/examples/demo_of_expectations/drop_demo_equal_matcher.sql -/scripts/utPLSQL/examples/demo_of_expectations/run.sql -/scripts/utPLSQL/examples/developer_examples/RunExampleTestAnnotationsParsingTimeHugePackage.sql -/scripts/utPLSQL/examples/developer_examples/RunExampleTestSuite.sql -/scripts/utPLSQL/examples/developer_examples/RunExampleTestSuiteWithCompositeReporter.sql -/scripts/utPLSQL/examples/developer_examples/tst_pkg_huge.pks -/scripts/utPLSQL/examples/developer_examples/ut_exampletest.pkb -/scripts/utPLSQL/examples/developer_examples/ut_exampletest.pks -/scripts/utPLSQL/examples/developer_examples/ut_exampletest2.pkb -/scripts/utPLSQL/examples/developer_examples/ut_exampletest2.pks -/scripts/utPLSQL/examples/remove_rooms_by_name/remove_rooms_by_name.sql -/scripts/utPLSQL/examples/remove_rooms_by_name/rooms.sql -/scripts/utPLSQL/examples/remove_rooms_by_name/run_remove_rooms_by_name_test.sql -/scripts/utPLSQL/examples/remove_rooms_by_name/test_remove_rooms_by_name.pkg -/scripts/utPLSQL/examples/demo_expectations.pck -/scripts/utPLSQL/examples/department.tps -/scripts/utPLSQL/examples/departments.tps -/scripts/utPLSQL/examples/readme.md -/scripts/utPLSQL/examples/RunAllExamples.sql -/scripts/utPLSQL/examples/RunAllExamplesAsTests.sql -/scripts/utPLSQL/examples/RunCustomReportersExamples.sql -/scripts/utPLSQL/examples/RunDeveloperExamples.sql -/scripts/utPLSQL/examples/RunExampleTestAnnotationBasedForCurrentSchema.sql -/scripts/utPLSQL/examples/RunExpectations.sql -/scripts/utPLSQL/examples/RunUserExamples.sql -/scripts/utPLSQL/examples/RunWithDocumentationReporter.sql -/scripts/utPLSQL/examples/test_pkg1.pck -/scripts/utPLSQL/examples/test_pkg2.pck -/scripts/utPLSQL/source/api/be_between.syn -/scripts/utPLSQL/source/api/be_empty.syn -/scripts/utPLSQL/source/api/be_false.syn -/scripts/utPLSQL/source/api/be_greater_or_equal.syn -/scripts/utPLSQL/source/api/be_greater_than.syn -/scripts/utPLSQL/source/api/be_less_or_equal.syn -/scripts/utPLSQL/source/api/be_less_than.syn -/scripts/utPLSQL/source/api/be_like.syn -/scripts/utPLSQL/source/api/be_not_null.syn -/scripts/utPLSQL/source/api/be_null.syn -/scripts/utPLSQL/source/api/be_true.syn -/scripts/utPLSQL/source/api/be_within.syn -/scripts/utPLSQL/source/api/be_within_pct.syn -/scripts/utPLSQL/source/api/contain.syn -/scripts/utPLSQL/source/api/equal.syn -/scripts/utPLSQL/source/api/have_count.syn -/scripts/utPLSQL/source/api/match.syn -/scripts/utPLSQL/source/api/ut.pkb -/scripts/utPLSQL/source/api/ut.pks -/scripts/utPLSQL/source/api/ut_runner.pkb -/scripts/utPLSQL/source/api/ut_runner.pks -/scripts/utPLSQL/source/api/ut_suite_item_info.tpb -/scripts/utPLSQL/source/api/ut_suite_item_info.tps -/scripts/utPLSQL/source/api/ut_suite_items_info.tps -/scripts/utPLSQL/source/core/annotations/ut_annotated_object.tps -/scripts/utPLSQL/source/core/annotations/ut_annotated_objects.tps -/scripts/utPLSQL/source/core/annotations/ut_annotation.tps -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache.sql -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_info.sql -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_manager.pkb -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_manager.pks -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_schema.sql -/scripts/utPLSQL/source/core/annotations/ut_annotation_cache_seq.sql -/scripts/utPLSQL/source/core/annotations/ut_annotation_manager.pkb -/scripts/utPLSQL/source/core/annotations/ut_annotation_manager.pks -/scripts/utPLSQL/source/core/annotations/ut_annotation_obj_cache_info.tps -/scripts/utPLSQL/source/core/annotations/ut_annotation_objs_cache_info.tps -/scripts/utPLSQL/source/core/annotations/ut_annotation_parser.pkb -/scripts/utPLSQL/source/core/annotations/ut_annotation_parser.pks -/scripts/utPLSQL/source/core/annotations/ut_annotations.tps -/scripts/utPLSQL/source/core/annotations/ut_trigger_annotation_parsing.trg -/scripts/utPLSQL/source/core/annotations/ut_trigger_check.pkb -/scripts/utPLSQL/source/core/annotations/ut_trigger_check.pks -/scripts/utPLSQL/source/core/coverage/dbms_plssqlcode.sql -/scripts/utPLSQL/source/core/coverage/proftab.sql -/scripts/utPLSQL/source/core/coverage/ut_coverage.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_block.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage_block.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_block.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_block.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_profiler.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage_helper_profiler.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_profiler.pkb -/scripts/utPLSQL/source/core/coverage/ut_coverage_profiler.pks -/scripts/utPLSQL/source/core/coverage/ut_coverage_reporter_base.tpb -/scripts/utPLSQL/source/core/coverage/ut_coverage_reporter_base.tps -/scripts/utPLSQL/source/core/coverage/ut_coverage_runs.sql -/scripts/utPLSQL/source/core/coverage/ut_coverage_sources_tmp.sql -/scripts/utPLSQL/source/core/events/ut_event_item.tps -/scripts/utPLSQL/source/core/events/ut_event_listener.tps -/scripts/utPLSQL/source/core/events/ut_event_manager.pkb -/scripts/utPLSQL/source/core/events/ut_event_manager.pks -/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_base.tpb -/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_base.tps -/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_info_tmp.sql -/scripts/utPLSQL/source/core/output_buffers/ut_output_buffer_tmp.sql -/scripts/utPLSQL/source/core/output_buffers/ut_output_bulk_buffer.tpb -/scripts/utPLSQL/source/core/output_buffers/ut_output_bulk_buffer.tps -/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_buffer_tmp.sql -/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_table_buffer.tpb -/scripts/utPLSQL/source/core/output_buffers/ut_output_clob_table_buffer.tps -/scripts/utPLSQL/source/core/output_buffers/ut_output_data_row.tps -/scripts/utPLSQL/source/core/output_buffers/ut_output_data_rows.tps -/scripts/utPLSQL/source/core/output_buffers/ut_output_table_buffer.tpb -/scripts/utPLSQL/source/core/output_buffers/ut_output_table_buffer.tps -/scripts/utPLSQL/source/core/session_context/ut_session_context.pkb -/scripts/utPLSQL/source/core/session_context/ut_session_context.pks -/scripts/utPLSQL/source/core/session_context/ut_session_info.tpb -/scripts/utPLSQL/source/core/session_context/ut_session_info.tps -/scripts/utPLSQL/source/core/types/ut_console_reporter_base.tpb -/scripts/utPLSQL/source/core/types/ut_console_reporter_base.tps -/scripts/utPLSQL/source/core/types/ut_coverage_options.tpb -/scripts/utPLSQL/source/core/types/ut_coverage_options.tps -/scripts/utPLSQL/source/core/types/ut_executable.tpb -/scripts/utPLSQL/source/core/types/ut_executable.tps -/scripts/utPLSQL/source/core/types/ut_executable_test.tpb -/scripts/utPLSQL/source/core/types/ut_executable_test.tps -/scripts/utPLSQL/source/core/types/ut_executables.tps -/scripts/utPLSQL/source/core/types/ut_expectation_result.tpb -/scripts/utPLSQL/source/core/types/ut_expectation_result.tps -/scripts/utPLSQL/source/core/types/ut_expectation_results.tps -/scripts/utPLSQL/source/core/types/ut_file_mapping.tpb -/scripts/utPLSQL/source/core/types/ut_file_mapping.tps -/scripts/utPLSQL/source/core/types/ut_file_mappings.tps -/scripts/utPLSQL/source/core/types/ut_integer_list.tps -/scripts/utPLSQL/source/core/types/ut_key_value_pair.tps -/scripts/utPLSQL/source/core/types/ut_key_value_pairs.tps -/scripts/utPLSQL/source/core/types/ut_logical_suite.tpb -/scripts/utPLSQL/source/core/types/ut_logical_suite.tps -/scripts/utPLSQL/source/core/types/ut_object_name.tpb -/scripts/utPLSQL/source/core/types/ut_object_name.tps -/scripts/utPLSQL/source/core/types/ut_object_names.tps -/scripts/utPLSQL/source/core/types/ut_output_reporter_base.tpb -/scripts/utPLSQL/source/core/types/ut_output_reporter_base.tps -/scripts/utPLSQL/source/core/types/ut_path_item.tpb -/scripts/utPLSQL/source/core/types/ut_path_item.tps -/scripts/utPLSQL/source/core/types/ut_path_items.tps -/scripts/utPLSQL/source/core/types/ut_reporter_base.tpb -/scripts/utPLSQL/source/core/types/ut_reporter_base.tps -/scripts/utPLSQL/source/core/types/ut_reporter_info.tps -/scripts/utPLSQL/source/core/types/ut_reporters.tps -/scripts/utPLSQL/source/core/types/ut_reporters_info.tps -/scripts/utPLSQL/source/core/types/ut_results_counter.tpb -/scripts/utPLSQL/source/core/types/ut_results_counter.tps -/scripts/utPLSQL/source/core/types/ut_run.tpb -/scripts/utPLSQL/source/core/types/ut_run.tps -/scripts/utPLSQL/source/core/types/ut_run_info.tpb -/scripts/utPLSQL/source/core/types/ut_run_info.tps -/scripts/utPLSQL/source/core/types/ut_stack.tpb -/scripts/utPLSQL/source/core/types/ut_stack.tps -/scripts/utPLSQL/source/core/types/ut_suite.tpb -/scripts/utPLSQL/source/core/types/ut_suite.tps -/scripts/utPLSQL/source/core/types/ut_suite_cache_row.tps -/scripts/utPLSQL/source/core/types/ut_suite_cache_rows.tps -/scripts/utPLSQL/source/core/types/ut_suite_context.tpb -/scripts/utPLSQL/source/core/types/ut_suite_context.tps -/scripts/utPLSQL/source/core/types/ut_suite_item.tpb -/scripts/utPLSQL/source/core/types/ut_suite_item.tps -/scripts/utPLSQL/source/core/types/ut_suite_items.tps -/scripts/utPLSQL/source/core/types/ut_test.tpb -/scripts/utPLSQL/source/core/types/ut_test.tps -/scripts/utPLSQL/source/core/types/ut_varchar2_list.tps -/scripts/utPLSQL/source/core/types/ut_varchar2_rows.tps -/scripts/utPLSQL/source/core/ut_dbms_output_cache.sql -/scripts/utPLSQL/source/core/ut_expectation_processor.pkb -/scripts/utPLSQL/source/core/ut_expectation_processor.pks -/scripts/utPLSQL/source/core/ut_file_mapper.pkb -/scripts/utPLSQL/source/core/ut_file_mapper.pks -/scripts/utPLSQL/source/core/ut_metadata.pkb -/scripts/utPLSQL/source/core/ut_metadata.pks -/scripts/utPLSQL/source/core/ut_savepoint_seq.sql -/scripts/utPLSQL/source/core/ut_suite_builder.pkb -/scripts/utPLSQL/source/core/ut_suite_builder.pks -/scripts/utPLSQL/source/core/ut_suite_cache.sql -/scripts/utPLSQL/source/core/ut_suite_cache_manager.pkb -/scripts/utPLSQL/source/core/ut_suite_cache_manager.pks -/scripts/utPLSQL/source/core/ut_suite_cache_package.sql -/scripts/utPLSQL/source/core/ut_suite_cache_schema.sql -/scripts/utPLSQL/source/core/ut_suite_cache_seq.sql -/scripts/utPLSQL/source/core/ut_suite_manager.pkb -/scripts/utPLSQL/source/core/ut_suite_manager.pks -/scripts/utPLSQL/source/core/ut_suite_tag_filter.pkb -/scripts/utPLSQL/source/core/ut_suite_tag_filter.pks -/scripts/utPLSQL/source/core/ut_utils.pkb -/scripts/utPLSQL/source/core/ut_utils.pks -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_diff_tmp.sql -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_helper.pkb -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_helper.pks -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_tmp.sql -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_value.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_compound_data_value.tps -/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column.tps -/scripts/utPLSQL/source/expectations/data_values/ut_cursor_column_tab.tps -/scripts/utPLSQL/source/expectations/data_values/ut_cursor_details.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_cursor_details.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_anydata.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_anydata.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_blob.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_blob.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_boolean.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_boolean.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_clob.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_clob.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_date.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_date.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_dsinterval.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_dsinterval.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_json.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_json.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_number.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_number.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_refcursor.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_refcursor.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_ltz.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_ltz.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_tz.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_timestamp_tz.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_varchar2.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_varchar2.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_xmltype.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_xmltype.tps -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_yminterval.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_data_value_yminterval.tps -/scripts/utPLSQL/source/expectations/data_values/ut_json_data_diff_tmp.sql -/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf.tps -/scripts/utPLSQL/source/expectations/data_values/ut_json_leaf_tab.tps -/scripts/utPLSQL/source/expectations/data_values/ut_json_tree_details.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_json_tree_details.tps -/scripts/utPLSQL/source/expectations/data_values/ut_key_anyval_pair.tps -/scripts/utPLSQL/source/expectations/data_values/ut_key_anyval_pairs.tps -/scripts/utPLSQL/source/expectations/data_values/ut_key_anyvalues.tpb -/scripts/utPLSQL/source/expectations/data_values/ut_key_anyvalues.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_between.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_between.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_empty.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_empty.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_false.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_false.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_or_equal.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_or_equal.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_than.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_greater_than.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_less_or_equal.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_less_or_equal.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_less_than.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_less_than.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_like.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_like.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_not_null.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_not_null.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_null.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_null.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_true.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_true.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_within.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_within.tps -/scripts/utPLSQL/source/expectations/matchers/ut_be_within_helper.pkb -/scripts/utPLSQL/source/expectations/matchers/ut_be_within_helper.pks -/scripts/utPLSQL/source/expectations/matchers/ut_be_within_pct.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_be_within_pct.tps -/scripts/utPLSQL/source/expectations/matchers/ut_comparison_matcher.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_comparison_matcher.tps -/scripts/utPLSQL/source/expectations/matchers/ut_contain.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_contain.tps -/scripts/utPLSQL/source/expectations/matchers/ut_equal.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_equal.tps -/scripts/utPLSQL/source/expectations/matchers/ut_have_count.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_have_count.tps -/scripts/utPLSQL/source/expectations/matchers/ut_match.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_match.tps -/scripts/utPLSQL/source/expectations/matchers/ut_matcher.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_matcher.tps -/scripts/utPLSQL/source/expectations/matchers/ut_matcher_base.tps -/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options.tps -/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options_items.tpb -/scripts/utPLSQL/source/expectations/matchers/ut_matcher_options_items.tps -/scripts/utPLSQL/source/expectations/json_objects_specs.sql -/scripts/utPLSQL/source/expectations/ut_expectation.tpb -/scripts/utPLSQL/source/expectations/ut_expectation.tps -/scripts/utPLSQL/source/expectations/ut_expectation_base.tpb -/scripts/utPLSQL/source/expectations/ut_expectation_base.tps -/scripts/utPLSQL/source/expectations/ut_expectation_compound.tpb -/scripts/utPLSQL/source/expectations/ut_expectation_compound.tps -/scripts/utPLSQL/source/expectations/ut_expectation_json.tpb -/scripts/utPLSQL/source/expectations/ut_expectation_json.tps -/scripts/utPLSQL/source/reporters/ut_ansiconsole_helper.pkb -/scripts/utPLSQL/source/reporters/ut_ansiconsole_helper.pks -/scripts/utPLSQL/source/reporters/ut_coverage_cobertura_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_coverage_cobertura_reporter.tps -/scripts/utPLSQL/source/reporters/ut_coverage_html_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_coverage_html_reporter.tps -/scripts/utPLSQL/source/reporters/ut_coverage_report_html_helper.pkb -/scripts/utPLSQL/source/reporters/ut_coverage_report_html_helper.pks -/scripts/utPLSQL/source/reporters/ut_coverage_sonar_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_coverage_sonar_reporter.tps -/scripts/utPLSQL/source/reporters/ut_coveralls_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_coveralls_reporter.tps -/scripts/utPLSQL/source/reporters/ut_debug_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_debug_reporter.tps -/scripts/utPLSQL/source/reporters/ut_documentation_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_documentation_reporter.tps -/scripts/utPLSQL/source/reporters/ut_junit_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_junit_reporter.tps -/scripts/utPLSQL/source/reporters/ut_realtime_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_realtime_reporter.tps -/scripts/utPLSQL/source/reporters/ut_sonar_test_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_sonar_test_reporter.tps -/scripts/utPLSQL/source/reporters/ut_teamcity_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_teamcity_reporter.tps -/scripts/utPLSQL/source/reporters/ut_teamcity_reporter_helper.pkb -/scripts/utPLSQL/source/reporters/ut_teamcity_reporter_helper.pks -/scripts/utPLSQL/source/reporters/ut_tfs_junit_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_tfs_junit_reporter.tps -/scripts/utPLSQL/source/reporters/ut_xunit_reporter.tpb -/scripts/utPLSQL/source/reporters/ut_xunit_reporter.tps -/scripts/utPLSQL/source/check_object_grants.sql -/scripts/utPLSQL/source/check_sys_grants.sql -/scripts/utPLSQL/source/create_grants.sql -/scripts/utPLSQL/source/create_synonyms.sql -/scripts/utPLSQL/source/create_synonyms_and_grants_for_public.sql -/scripts/utPLSQL/source/create_user_grants.sql -/scripts/utPLSQL/source/create_user_synonyms.sql -/scripts/utPLSQL/source/create_utplsql_owner.sql -/scripts/utPLSQL/source/define_ut3_owner_param.sql -/scripts/utPLSQL/source/dummy.sql -/scripts/utPLSQL/source/install.log -/scripts/utPLSQL/source/install.sql -/scripts/utPLSQL/source/install_above_12_1.sql -/scripts/utPLSQL/source/install_component.sql -/scripts/utPLSQL/source/install_ddl_trigger.sql -/scripts/utPLSQL/source/install_headless.sql -/scripts/utPLSQL/source/install_headless_with_trigger.sql -/scripts/utPLSQL/source/set_install_params.sql -/scripts/utPLSQL/source/uninstall.sql -/scripts/utPLSQL/source/uninstall_all.sql -/scripts/utPLSQL/source/uninstall_coverage_tables.sql -/scripts/utPLSQL/source/uninstall_objects.sql -/scripts/utPLSQL/source/uninstall_synonyms.sql -/scripts/utPLSQL/BUILD_NO -/scripts/utPLSQL/CODE_OF_CONDUCT.md -/scripts/utPLSQL/CONTRIBUTING.md -/scripts/utPLSQL/LICENSE -/scripts/utPLSQL/mkdocs_offline.yml -/scripts/utPLSQL/readme.md -/scripts/utPLSQL/VERSION diff --git a/scripts/0_start_db.sh b/scripts/0_start_db.sh old mode 100755 new mode 100644 diff --git a/scripts/1_install_utplsql.sh b/scripts/1_install_utplsql.sh old mode 100755 new mode 100644 index 4b803f2..bb6577c --- a/scripts/1_install_utplsql.sh +++ b/scripts/1_install_utplsql.sh @@ -5,4 +5,4 @@ curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip unzip -q utPLSQL.zip docker run --rm -v $(pwd)/utPLSQL:/utPLSQL -w /utPLSQL/source --network host \ - --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@//127.0.0.1:1521/FREEPDB1 as sysdba @install_headless.sql UT3 UT3 users + --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@//127.0.0.1:1521/XE as sysdba @install_headless.sql UT3 UT3 users diff --git a/scripts/2_install_demo_project.sh b/scripts/2_install_demo_project.sh old mode 100755 new mode 100644 index 319b8a8..a4089b1 --- a/scripts/2_install_demo_project.sh +++ b/scripts/2_install_demo_project.sh @@ -1,11 +1,11 @@ docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - sys/oracle@//127.0.0.1:1521/FREEPDB1 as sysdba @scripts/sql/create_users.sql + sys/oracle@//127.0.0.1:1521/XE as sysdba @scripts/sql/create_users.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - app/pass@//127.0.0.1:1521/FREEPDB1 @scripts/sql/create_app_objects.sql + app/pass@//127.0.0.1:1521/XE @scripts/sql/create_app_objects.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - code_owner/pass@//127.0.0.1:1521/ @scripts/sql/create_source_owner_objects.sql + code_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_source_owner_objects.sql docker run --rm -v $(pwd):/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \ - tests_owner/pass@//127.0.0.1:1521/FREEPDB1 @scripts/sql/create_tests_owner_objects.sql + tests_owner/pass@//127.0.0.1:1521/XE @scripts/sql/create_tests_owner_objects.sql From ebccd01e9a35d10ef71c3ba3b683191790b7c345 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:18:39 +0200 Subject: [PATCH 07/11] Revert "Fixed JDBC Url" This reverts commit f67d92a003aaba57f77dad358c1c56650e68d92e. --- README.md | 2 +- src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml | 2 +- src/test/resources/unit-tests/dbms_output/pom.xml | 2 +- .../unit-tests/default_console_output_behaviour/pom.xml | 2 +- src/test/resources/unit-tests/default_reporter/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/exclude_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_object/pom.xml | 2 +- src/test/resources/unit-tests/include_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/invalid_sources_directory/pom.xml | 2 +- src/test/resources/unit-tests/invalid_tests_directory/pom.xml | 2 +- src/test/resources/unit-tests/ora_stuck_timeout/pom.xml | 2 +- src/test/resources/unit-tests/skip_utplsql_tests/pom.xml | 2 +- .../sources_and_tests_parameter_does_not_exist/pom.xml | 2 +- .../pom.xml | 2 +- .../sources_and_tests_parameter_have_not_directory_tag/pom.xml | 2 +- .../sources_and_tests_parameter_have_not_includes_tag/pom.xml | 2 +- src/test/resources/unit-tests/sources_tests_parameters/pom.xml | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index ae7b2d7..c428511 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Please refer to the following usage example for the parameters descriptions: - + url_of_connection diff --git a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java index deb7546..3964c13 100644 --- a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java +++ b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java @@ -304,7 +304,7 @@ public void dbms_output() throws Exception { */ @Test public void db_config_using_system_properties() throws Exception { - System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521/FREEPDB1"); + System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:FREEPDB1"); System.setProperty("dbUser", "UT3"); System.setProperty("dbPass", "UT3"); diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml index 4889335..36b3693 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml index c4a016f..fbe3782 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml index bcdc456..d5c2a74 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml index df74866..b99d1f5 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml index 0660f2e..307b956 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml index 0c2f255..55c3bed 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml index e358a2d..156b956 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml index 3e1fd7f..cbe578a 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml index c8e0113..605124b 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml index 864cb07..839a6af 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml index 2403efd..b82af37 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml index 493e0d3..432deb2 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521/FREEPDB1 + jdbc:oracle:thin:@localhost:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/dbms_output/pom.xml b/src/test/resources/unit-tests/dbms_output/pom.xml index 7e0ded0..bf4bb04 100644 --- a/src/test/resources/unit-tests/dbms_output/pom.xml +++ b/src/test/resources/unit-tests/dbms_output/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml index 60c5437..266f353 100644 --- a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml +++ b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/default_reporter/pom.xml b/src/test/resources/unit-tests/default_reporter/pom.xml index c5eec78..a1483af 100644 --- a/src/test/resources/unit-tests/default_reporter/pom.xml +++ b/src/test/resources/unit-tests/default_reporter/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object/pom.xml b/src/test/resources/unit-tests/exclude_object/pom.xml index c5a1b47..59c2529 100644 --- a/src/test/resources/unit-tests/exclude_object/pom.xml +++ b/src/test/resources/unit-tests/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object_expr/pom.xml b/src/test/resources/unit-tests/exclude_object_expr/pom.xml index 28e2b2b..2540641 100644 --- a/src/test/resources/unit-tests/exclude_object_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml index 97e900f..29a9a01 100644 --- a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object/pom.xml b/src/test/resources/unit-tests/include_object/pom.xml index d15d710..b3bcfa4 100644 --- a/src/test/resources/unit-tests/include_object/pom.xml +++ b/src/test/resources/unit-tests/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object_expr/pom.xml b/src/test/resources/unit-tests/include_object_expr/pom.xml index ddd1e1d..c3f43b9 100644 --- a/src/test/resources/unit-tests/include_object_expr/pom.xml +++ b/src/test/resources/unit-tests/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/include_schema_expr/pom.xml b/src/test/resources/unit-tests/include_schema_expr/pom.xml index 09d3793..95f28dd 100644 --- a/src/test/resources/unit-tests/include_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/include_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml index 74d9946..b6b3d5e 100644 --- a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml index e086711..af69a88 100644 --- a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml index 4bcb833..2e3649d 100644 --- a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml +++ b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml index 4a0809e..88e75af 100644 --- a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml +++ b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml index 123d569..bb59752 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml index 123d569..bb59752 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml index 8f6fd16..fe55db1 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml index 9c1550e..c848bbd 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml @@ -10,7 +10,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml index 5588400..c07668c 100644 --- a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml +++ b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521/FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 UT3 UT3 From a312a2588c12816d4b15f062fd13437211a3094d Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:18:42 +0200 Subject: [PATCH 08/11] Revert "User FREEPDB1 SID" This reverts commit 9d60472bd6bf3ba5e1f5c4046047d1bd9dffe37e. --- README.md | 2 +- .../java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java | 8 ++++++-- .../maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml | 2 +- .../plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/include_object/pom.xml | 2 +- .../plugin/UtPlsqlMojoIT/include_object_expr/pom.xml | 2 +- .../utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml | 2 +- .../org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml | 2 +- .../maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml | 2 +- src/test/resources/unit-tests/dbms_output/pom.xml | 2 +- .../unit-tests/default_console_output_behaviour/pom.xml | 2 +- src/test/resources/unit-tests/default_reporter/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object/pom.xml | 2 +- src/test/resources/unit-tests/exclude_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/exclude_schema_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_object/pom.xml | 2 +- src/test/resources/unit-tests/include_object_expr/pom.xml | 2 +- src/test/resources/unit-tests/include_schema_expr/pom.xml | 2 +- .../unit-tests/invalid_sources_directory/pom.xml | 2 +- .../resources/unit-tests/invalid_tests_directory/pom.xml | 2 +- src/test/resources/unit-tests/ora_stuck_timeout/pom.xml | 2 +- src/test/resources/unit-tests/skip_utplsql_tests/pom.xml | 2 +- .../sources_and_tests_parameter_does_not_exist/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../resources/unit-tests/sources_tests_parameters/pom.xml | 2 +- 32 files changed, 37 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index c428511..d57328f 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Please refer to the following usage example for the parameters descriptions: - + url_of_connection diff --git a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java index 3964c13..6315072 100644 --- a/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java +++ b/src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java @@ -12,7 +12,11 @@ import java.io.PrintStream; import java.util.List; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertThrows; +import static org.junit.Assert.assertTrue; public class UtPlsqlMojoTest { @@ -304,7 +308,7 @@ public void dbms_output() throws Exception { */ @Test public void db_config_using_system_properties() throws Exception { - System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:FREEPDB1"); + System.setProperty("dbUrl", "jdbc:oracle:thin:@localhost:1521:xe"); System.setProperty("dbUser", "UT3"); System.setProperty("dbPass", "UT3"); diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml index 36b3693..15411c2 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml index fbe3782..22d0869 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml index d5c2a74..ee6d13f 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml index b99d1f5..e807d13 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml index 307b956..40759d2 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/minimalist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml index 55c3bed..f0c33da 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml index 156b956..961940b 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/owner_param/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml index cbe578a..2620738 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/regex/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml index 605124b..c174c87 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/simple/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml index 839a6af..f9264fb 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/skip/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml index b82af37..01150a1 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/tags/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml index 432deb2..3cf0033 100644 --- a/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml +++ b/src/test/resources-its/org/utplsql/maven/plugin/UtPlsqlMojoIT/type_mapping/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@localhost:1521:FREEPDB1 + jdbc:oracle:thin:@localhost:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/dbms_output/pom.xml b/src/test/resources/unit-tests/dbms_output/pom.xml index bf4bb04..4f45635 100644 --- a/src/test/resources/unit-tests/dbms_output/pom.xml +++ b/src/test/resources/unit-tests/dbms_output/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml index 266f353..ac6b14c 100644 --- a/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml +++ b/src/test/resources/unit-tests/default_console_output_behaviour/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/default_reporter/pom.xml b/src/test/resources/unit-tests/default_reporter/pom.xml index a1483af..8f03e25 100644 --- a/src/test/resources/unit-tests/default_reporter/pom.xml +++ b/src/test/resources/unit-tests/default_reporter/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object/pom.xml b/src/test/resources/unit-tests/exclude_object/pom.xml index 59c2529..d65fde3 100644 --- a/src/test/resources/unit-tests/exclude_object/pom.xml +++ b/src/test/resources/unit-tests/exclude_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_object_expr/pom.xml b/src/test/resources/unit-tests/exclude_object_expr/pom.xml index 2540641..7993e05 100644 --- a/src/test/resources/unit-tests/exclude_object_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml index 29a9a01..28df05e 100644 --- a/src/test/resources/unit-tests/exclude_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/exclude_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object/pom.xml b/src/test/resources/unit-tests/include_object/pom.xml index b3bcfa4..f031df5 100644 --- a/src/test/resources/unit-tests/include_object/pom.xml +++ b/src/test/resources/unit-tests/include_object/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/include_object_expr/pom.xml b/src/test/resources/unit-tests/include_object_expr/pom.xml index c3f43b9..636098b 100644 --- a/src/test/resources/unit-tests/include_object_expr/pom.xml +++ b/src/test/resources/unit-tests/include_object_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/include_schema_expr/pom.xml b/src/test/resources/unit-tests/include_schema_expr/pom.xml index 95f28dd..f953ec0 100644 --- a/src/test/resources/unit-tests/include_schema_expr/pom.xml +++ b/src/test/resources/unit-tests/include_schema_expr/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml index b6b3d5e..af6643d 100644 --- a/src/test/resources/unit-tests/invalid_sources_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_sources_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml index af69a88..c7380ef 100644 --- a/src/test/resources/unit-tests/invalid_tests_directory/pom.xml +++ b/src/test/resources/unit-tests/invalid_tests_directory/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml index 2e3649d..f04825c 100644 --- a/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml +++ b/src/test/resources/unit-tests/ora_stuck_timeout/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml index 88e75af..3e978d5 100644 --- a/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml +++ b/src/test/resources/unit-tests/skip_utplsql_tests/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml index bb59752..a556a7e 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml index bb59752..a556a7e 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_does_not_exist_but_default_directory_exists/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml index fe55db1..d5382b4 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_directory_tag/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml index c848bbd..d33e917 100644 --- a/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml +++ b/src/test/resources/unit-tests/sources_and_tests_parameter_have_not_includes_tag/pom.xml @@ -10,7 +10,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 diff --git a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml index c07668c..6f4c2d0 100644 --- a/src/test/resources/unit-tests/sources_tests_parameters/pom.xml +++ b/src/test/resources/unit-tests/sources_tests_parameters/pom.xml @@ -9,7 +9,7 @@ pom - jdbc:oracle:thin:@127.0.0.1:1521:FREEPDB1 + jdbc:oracle:thin:@127.0.0.1:1521:xe UT3 UT3 From 560f1983236b6db4e713d9643f4a8982a14cf948 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:18:45 +0200 Subject: [PATCH 09/11] Revert "Upgrade to Oracle Database Free #74" This reverts commit 36d6ab3c6a5094d9b0a790e008214da32e7bfa87. --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- scripts/0_start_db.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07c5189..b3a4e7b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: services: oracle: - image: gvenzl/oracle-free:23-slim + image: gvenzl/oracle-xe:21-slim env: ORACLE_PASSWORD: oracle ports: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5b1c45..4825e34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: services: oracle: - image: gvenzl/oracle-free:23-slim + image: gvenzl/oracle-xe:21-slim env: ORACLE_PASSWORD: oracle ports: diff --git a/scripts/0_start_db.sh b/scripts/0_start_db.sh index d1bd8bb..d319407 100644 --- a/scripts/0_start_db.sh +++ b/scripts/0_start_db.sh @@ -1 +1 @@ -docker run -d --name ora-utplsql -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-free:23-slim +docker run -d --name ora-utplsql -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-xe:21-slim From d95d4885502f85ba2ea53e2a934480b23fa142d9 Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:23:50 +0200 Subject: [PATCH 10/11] Java 8 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3a4e7b..8410bc3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - java-version: '11' + java-version: '8' distribution: 'adopt' server-id: ossrh server-username: MAVEN_USERNAME From 1eecf3b755f1d20601f5e542517a4285a52d6cbe Mon Sep 17 00:00:00 2001 From: Simon Martinelli Date: Tue, 15 Oct 2024 09:43:25 +0200 Subject: [PATCH 11/11] SonarQube requires later Java version --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8410bc3..6c848b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,10 +40,10 @@ jobs: - name: Install demo project run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v2 with: - java-version: '8' + java-version: '17' distribution: 'adopt' server-id: ossrh server-username: MAVEN_USERNAME