This is an automated email from the ASF dual-hosted git repository.
mchades pushed a change to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/gravitino.git
from e0ff8a90f0 [Cherry-pick to branch-1.3] [#11596] fix(flink-connector):
Support Iceberg catalog with JDBC backend (#11636) (#11656)
add dc94b26930 [Cherry-pick to branch-1.3] [#11501] test(iceberg-rest):
Add Trino IT for Iceberg REST authorization in auxMode (#11502) (#11651)
No new revisions were added by this update.
Summary of changes:
.../workflows/backend-integration-test-action.yml | 1 +
.github/workflows/cron-integration-test.yml | 5 +-
...yml => iceberg-rest-trino-integration-test.yml} | 52 ++---
gradle/libs.versions.toml | 5 +
iceberg/iceberg-rest-trino-it/build.gradle.kts | 110 +++++++++
.../test/trino/MockOAuthTokenServer.java | 151 +++++++++++++
.../test/trino/TestMockOAuthTokenServer.java | 69 ++++++
.../trino/TrinoIcebergRESTAuthorizationIT.java | 114 ++++++++++
.../trino/TrinoIcebergRESTAuthorizationITBase.java | 249 +++++++++++++++++++++
.../test/trino/TrinoIcebergRESTSmokeIT.java | 49 ++++
settings.gradle.kts | 1 +
11 files changed, 777 insertions(+), 29 deletions(-)
copy .github/workflows/{access-control-integration-test.yml =>
iceberg-rest-trino-integration-test.yml} (60%)
create mode 100644 iceberg/iceberg-rest-trino-it/build.gradle.kts
create mode 100644
iceberg/iceberg-rest-trino-it/src/test/java/org/apache/gravitino/iceberg/integration/test/trino/MockOAuthTokenServer.java
create mode 100644
iceberg/iceberg-rest-trino-it/src/test/java/org/apache/gravitino/iceberg/integration/test/trino/TestMockOAuthTokenServer.java
create mode 100644
iceberg/iceberg-rest-trino-it/src/test/java/org/apache/gravitino/iceberg/integration/test/trino/TrinoIcebergRESTAuthorizationIT.java
create mode 100644
iceberg/iceberg-rest-trino-it/src/test/java/org/apache/gravitino/iceberg/integration/test/trino/TrinoIcebergRESTAuthorizationITBase.java
create mode 100644
iceberg/iceberg-rest-trino-it/src/test/java/org/apache/gravitino/iceberg/integration/test/trino/TrinoIcebergRESTSmokeIT.java