This is an automated email from the ASF dual-hosted git repository.
sergehuber pushed a change to branch UNOMI-139-878-integration-tests
in repository https://gitbox.apache.org/repos/asf/unomi.git
omit bc248eaeb UNOMI-139: Run HealthCheckIT last in AllITs suite
omit 1c21aec46 Revert "UNOMI-139: Fix TenantIT and EventsCollectorIT
integration failures"
omit 2c80870b3 UNOMI-139: Fix TenantIT and EventsCollectorIT integration
failures
omit 11881d606 UNOMI-139 UNOMI-878: Platform integration tests
omit 03481dd5a UNOMI-880 UNOMI-878 UNOMI-139: Karaf dev shell commands
omit 219abb750 UNOMI-904: Add viewEvent.json fixture for
V2CompatibilityModeIT
omit f1f18ac80 UNOMI-904: V2 API compatibility mode
omit 348c683b9 UNOMI-139/880/878/884: Multi-tenant platform core
add 9b599caa1 UNOMI-944: Add IT developer tooling for run archival,
cross-run comparison and live Karaf inspection (#770)
add 3085fe304 UNOMI-139/880/878/884: Multi-tenant platform core
add 2e6553e48 UNOMI-904: V2 API compatibility mode
add e8c92473c UNOMI-904: Add viewEvent.json fixture for
V2CompatibilityModeIT
add 04954031f UNOMI-904: Address Copilot review feedback on V2
compatibility mode
add a84b3a0ac UNOMI-904: Extract maskSecret into shared SecurityUtils to
eliminate duplication
add ad94a666f UNOMI-904: Address review feedback on V2 compatibility mode
add d9512abb8 UNOMI-880 UNOMI-878 UNOMI-139: Karaf dev shell commands
add 310b1495b UNOMI-139 UNOMI-878: Platform integration tests
add 471b0f13e UNOMI-139: Fix TenantIT and EventsCollectorIT integration
failures
add d305e5f62 Revert "UNOMI-139: Fix TenantIT and EventsCollectorIT
integration failures"
add 4f98f3499 UNOMI-139: Run HealthCheckIT last in AllITs suite
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (bc248eaeb)
\
N -- N -- N refs/heads/UNOMI-139-878-integration-tests
(4f98f3499)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.gitignore | 1 +
build.sh | 62 +-
itests/README.md | 598 +++++++++++-----
itests/archive-it-run.sh | 520 ++++++++++++++
itests/compare-it-runs.sh | 102 +++
itests/kt.sh | 249 +++++++
.../lib/it-run-bootstrap.sh | 20 +-
itests/lib/it-run-compare.sh | 319 +++++++++
itests/lib/it-run-context.sh | 157 +++++
itests/lib/it-run-karaf.sh | 760 +++++++++++++++++++++
itests/lib/it-run-ui.sh | 268 ++++++++
itests/lib/it-run.sh | 471 +++++++++++++
itests/llm-it-run-analysis-guide.md | 126 ++++
.../test/java/org/apache/unomi/itests/PatchIT.java | 5 +-
.../apache/unomi/itests/V2CompatibilityModeIT.java | 102 ++-
.../apache/unomi/itests/graphql/GraphQLListIT.java | 1 +
.../rest/authentication/AuthenticationFilter.java | 53 +-
.../authentication/V2ThirdPartyConfigService.java | 67 +-
.../impl/DefaultRestAuthenticationConfig.java | 16 +-
.../rest/service/impl/RestServiceUtilsImpl.java | 6 +-
.../services/common/security/SecurityUtils.java | 42 ++
.../common/security/SecurityUtilsTest.java | 63 ++
22 files changed, 3748 insertions(+), 260 deletions(-)
create mode 100755 itests/archive-it-run.sh
create mode 100755 itests/compare-it-runs.sh
create mode 100755 itests/kt.sh
copy extensions/salesforce-connector/compileWithTests.sh =>
itests/lib/it-run-bootstrap.sh (63%)
mode change 100755 => 100644
create mode 100644 itests/lib/it-run-compare.sh
create mode 100644 itests/lib/it-run-context.sh
create mode 100644 itests/lib/it-run-karaf.sh
create mode 100644 itests/lib/it-run-ui.sh
create mode 100644 itests/lib/it-run.sh
create mode 100644 itests/llm-it-run-analysis-guide.md
create mode 100644
services-common/src/main/java/org/apache/unomi/services/common/security/SecurityUtils.java
create mode 100644
services-common/src/test/java/org/apache/unomi/services/common/security/SecurityUtilsTest.java