This is an automated email from the ASF dual-hosted git repository.
jungm pushed a change to branch ee11
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git
from 27302f7 Reduce the webprofile manifest to per-partition overrides
new 323d555 Set the EL TCK variable.mapper porting property and clear the
exclusions
new 2fec556 Run the JSON-B TCK with COMPAT locale data and drop the
locale exclusions
new 255bff2 Pin the JAXB RI for the Validation TCK and wire its signature
test
new b018cfc Configure the Servlet TCK harness for cross-context,
encoding, and trailers
new da8bdfc Trim the REST TCK exclusions to 3 via constrainedto tolerance
and the URLConnection conduit
new 6fa8541 Run the WebSocket TCK negative-deployment tests against TomEE
new 9748783 Register the Authentication spi provider under Tomcat's
app-context naming
new 7ae24ba Run the Faces TCK modern modules on Plume and retriage
exclusions
new 0c8dd20 Carry the cdi-tomee OpenWebBeans overlay and sign the CDI
runners
new db34d69 Bump the Jakarta Data TCK to the 1.0.1 certification release
new 135f76c Rebuild the transactions exclusion baseline from the pristine
zip entry
new 3d341ca Fail invoker-driven TCK runners on hidden test and tooling
failures
new a09ea05 Verify the Security TCK zip checksum on download
new 0b39a6b Collect the deep faces reactor reports and lint the
standalone scripts in CI
new 785e52e Guard the self-provisioned TomEE runners against a foreign
server on the port
new d681462 Reconcile the triage docs and fix stale runner
cross-references
new 4315462 Merge branch 'ee11' into claude/tck-module-setup-check-0c52f9
new e855d83 Declare the invoker verification inside the existing exec
plugin blocks
The 18 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Jenkinsfile | 17 +-
KNOWN_ISSUES.md | 263 ++++++++++++++-------
environment/tomee/require-tomee-ports-free.sh | 49 ++++
runner-standalone/README.md | 46 ++--
runner-standalone/authentication/pom.xml | 47 ++++
.../src/test/resources/tomee-remote-profile.xml | 2 +-
runner-standalone/cdi-ee/pom.xml | 37 +++
.../src/test/resources/META-INF/cdi-tck.properties | 5 +-
.../cdi-ee/src/tomee-conf/system.properties | 7 +
runner-standalone/cdi-tck-porting/pom.xml | 47 ++++
.../apache/openejb/tck/cdi/tomee/BeansImpl.java | 116 +++++++++
.../META-INF/openwebbeans/openwebbeans.properties | 47 ++++
runner-standalone/cdi/pom.xml | 161 +++++++++++++
.../src/test/resources/META-INF/cdi-tck.properties | 5 +-
.../cdi/src/tomee-conf/system.properties | 7 +
runner-standalone/data/pom.xml | 18 +-
.../data/src/test/resources/arquillian.xml | 6 +-
runner-standalone/data/src/tomee-conf/tomee.xml | 11 +
runner-standalone/el/pom.xml | 4 +
runner-standalone/exclusions/authentication.txt | 67 +-----
runner-standalone/exclusions/cdi-ee.txt | 200 +++++++---------
runner-standalone/exclusions/cdi.txt | 197 +++++++--------
runner-standalone/exclusions/data.txt | 88 ++++---
runner-standalone/exclusions/el.txt | 28 +--
runner-standalone/exclusions/faces.txt | 158 ++++---------
runner-standalone/exclusions/jsonb.txt | 13 +-
runner-standalone/exclusions/rest.txt | 35 +--
runner-standalone/exclusions/servlet.txt | 135 ++---------
runner-standalone/exclusions/transactions.txt | 37 ++-
runner-standalone/exclusions/validation.txt | 217 +----------------
runner-standalone/exclusions/websocket.txt | 69 ++----
runner-standalone/faces-old/pom.xml | 22 ++
runner-standalone/faces/pom.xml | 27 +++
.../src/test/resources/tomee-remote-profile.xml | 21 +-
runner-standalone/jsonb/pom.xml | 8 +
runner-standalone/pom.xml | 1 +
runner-standalone/rest/pom.xml | 5 +
.../rest/src/test/resources/arquillian.xml | 8 +-
runner-standalone/security/pom.xml | 54 +++++
runner-standalone/servlet/pom.xml | 27 ++-
.../servlet/src/tomee-conf/context.xml | 45 ++++
.../servlet/src/tomee-conf}/server.xml | 8 +-
runner-standalone/transactions/pom.xml | 39 ++-
runner-standalone/validation/pom.xml | 108 +++++++++
.../validation/src/tomee-conf/system.properties | 8 +
runner-standalone/verify-invoker-result.sh | 97 ++++++++
runner-standalone/websocket/pom.xml | 6 +
.../NegativeDeploymentToleranceObserver.java | 169 +++++++++++++
.../websocket/WebSocketTckExtension.java} | 7 +-
...org.jboss.arquillian.core.spi.LoadableExtension | 1 +
.../websocket/src/tomee-conf/system.properties | 21 ++
51 files changed, 1839 insertions(+), 982 deletions(-)
create mode 100755 environment/tomee/require-tomee-ports-free.sh
create mode 100644 runner-standalone/cdi-tck-porting/pom.xml
create mode 100644
runner-standalone/cdi-tck-porting/src/main/java/org/apache/openejb/tck/cdi/tomee/BeansImpl.java
create mode 100644
runner-standalone/cdi-tck-porting/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
create mode 100644 runner-standalone/servlet/src/tomee-conf/context.xml
copy {environment/tomee/conf =>
runner-standalone/servlet/src/tomee-conf}/server.xml (82%)
create mode 100755 runner-standalone/verify-invoker-result.sh
create mode 100644
runner-standalone/websocket/src/test/java/org/apache/tomee/tck/standalone/websocket/NegativeDeploymentToleranceObserver.java
copy
runner-standalone/{data/src/test/java/org/apache/tomee/tck/standalone/data/DataTckExtension.java
=>
websocket/src/test/java/org/apache/tomee/tck/standalone/websocket/WebSocketTckExtension.java}
(59%)
create mode 100644
runner-standalone/websocket/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
create mode 100644 runner-standalone/websocket/src/tomee-conf/system.properties