You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2022/09/30 22:46:48 UTC

[tomee] branch TOMEE-4050 updated (7da859bfb7 -> 40a4de32da)

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a change to branch TOMEE-4050
in repository https://gitbox.apache.org/repos/asf/tomee.git


    from 7da859bfb7 TOMEE-4050: Retry and Refresh for MP JWT keys supplied via HTTP Error handling and integration testing still incomplete
     add 190307934e Add itest-util and itest-common Largely empty now, but likely to grow as we create more itests
     add 40a4de32da Start of iTests for TOMEE-4050 Retry and Refresh for MP JWT keys supplied via HTTP

No new revisions were added by this update.

Summary of changes:
 itests/itest-common/README.adoc                    |   3 +
 itests/{legacy-server => itest-common}/pom.xml     |  14 +-
 itests/itest-util/README.adoc                      |   3 +
 itests/{legacy-server => itest-util}/pom.xml       |  15 +-
 .../org/apache/tomee/itest}/util/Duration.java     |  18 +-
 .../java/org/apache/tomee/itest}/util/Join.java    |  12 +-
 .../java/org/apache/tomee/itest/util/Runner.java   | 190 +++++++++++++++++++++
 .../java/org/apache/tomee/itest/util/Timer.java    |  67 ++++++++
 itests/microprofile-jwt-itests/pom.xml             |  12 +-
 .../tomee/microprofile/jwt/itest/Tokens.java       |  31 +++-
 .../jwt/itest/keys/PublicKeyLocation.java          |  87 ++++++++++
 .../jwt/itest/keys/http/HttpKeyLocationTest.java   | 179 +++++++++++++++++++
 itests/pom.xml                                     |   2 +
 .../org/apache/tomee/server/composer/Archive.java  |  15 ++
 14 files changed, 605 insertions(+), 43 deletions(-)
 create mode 100644 itests/itest-common/README.adoc
 copy itests/{legacy-server => itest-common}/pom.xml (81%)
 create mode 100644 itests/itest-util/README.adoc
 copy itests/{legacy-server => itest-util}/pom.xml (78%)
 copy {container/openejb-core/src/main/java/org/apache/openejb => itests/itest-util/src/main/java/org/apache/tomee/itest}/util/Duration.java (95%)
 copy {container/openejb-core/src/main/java/org/apache/openejb => itests/itest-util/src/main/java/org/apache/tomee/itest}/util/Join.java (90%)
 create mode 100644 itests/itest-util/src/main/java/org/apache/tomee/itest/util/Runner.java
 create mode 100644 itests/itest-util/src/main/java/org/apache/tomee/itest/util/Timer.java
 create mode 100644 itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/PublicKeyLocation.java
 create mode 100644 itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/keys/http/HttpKeyLocationTest.java