Skip to content

WFCORE-6995 Allow stability-specific resource transformations for mixed domains#6214

Open
pferraro wants to merge 3 commits into
wildfly:mainfrom
pferraro:WFCORE-6995
Open

WFCORE-6995 Allow stability-specific resource transformations for mixed domains#6214
pferraro wants to merge 3 commits into
wildfly:mainfrom
pferraro:WFCORE-6995

Conversation

@pferraro
Copy link
Copy Markdown
Contributor

@pferraro pferraro commented Oct 11, 2024

https://issues.redhat.com/browse/WFCORE-6995

Submitting as a draft while I collect feedback and add tests.

@yersan Until https://github.com/wildfly/wildfly-legacy-test publishes releases for WildFly versions, it will be impossible to create model transformation tests for COMMUNITY stability.

@pferraro pferraro requested a review from yersan October 16, 2024 09:14
@pferraro pferraro force-pushed the WFCORE-6995 branch 3 times, most recently from 7be71fb to e05436b Compare October 17, 2024 19:31
@wildfly-ci

This comment was marked as off-topic.

@wildfly-ci
Copy link
Copy Markdown

Core -> WildFly Preview Integration Build 14066 outcome was FAILURE using a merge of e05436b
Summary: Tests passed: 5009, ignored: 58; exit code 1 (Step: Build & test full (Maven)) Build time: 02:48:20

@pferraro pferraro marked this pull request as ready for review October 18, 2024 14:35
@wildfly-ci
Copy link
Copy Markdown

Core -> WildFly Preview Integration Build 14067 outcome was FAILURE using a merge of e05436b
Summary: Exit code 1 (Step: Build & test full (Maven)) Build time: 00:05:30

@wildfly-ci

This comment was marked as off-topic.

@github-actions
Copy link
Copy Markdown

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration Build 14427 outcome was UNKNOWN using a merge of c997c15
Summary: Canceled (Error while applying patch; cannot find commit c7edee2 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/6214/merge branch was updated and the commit selected for the ... Build time: 00:00:34

@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration Build 14126 outcome was UNKNOWN using a merge of c997c15
Summary: Canceled (Error while applying patch; cannot find commit c7edee2 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/6214/merge branch was updated and the commit selected for the ... Build time: 00:00:15

@wildfly-ci
Copy link
Copy Markdown

Core -> WildFly Preview Integration Build 14208 outcome was UNKNOWN using a merge of c997c15
Summary: Canceled (Error while applying patch; cannot find commit c7edee2 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/6214/merge branch was updated and the commit selected for the ... Build time: 00:00:15

@github-actions github-actions Bot removed the Stale label Dec 17, 2024
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Feb 1, 2025

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label Feb 1, 2025
Copy link
Copy Markdown
Contributor

@yersan yersan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just added comments, I do not have the expertise on transformers API to validate the work done here, it should be fine since the BasicResourceTestCase explicitly tests all of those transformations, but I got the impression there is still pending work to do to enable the server to use the expected stability level when it is registering the transformers, that;s still a bit unclear to me

Comment on lines +45 to +50
for (E model : EnumSet.complementOf(EnumSet.of(this.currentSubsystemModel))) {
ModelVersion version = model.getVersion();
ResourceTransformationDescriptionBuilder builder = registration.createResourceTransformationDescriptionBuilder();
this.transformation.accept(builder, version);
TransformationDescription.Tools.register(builder.build(), registration, version);
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have an example of how to use this class?

I'm not a SME in these transformers and it is too big to digest it easily, but I guess what I cannot see is how this new way to register the transformers will be able to match what we currently have. At this moment, transformers are registered as a chain, with a common builder that registers the transformation from one version to another, however here we are only registering a single version with a specific builder, so I get lost on this.

Comment on lines +293 to 296
@Deprecated(forRemoval = true)
public static TransformerRegistry create() {
return new TransformerRegistry();
return create(Stability.DEFAULT);
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens with the current usage of this method in our code? Shouldn't we at least force the creation of a transformer registry using a specific Stability level? Otherwise, we will continue using the wrong registry and we won't be able yet to add specific transformations to the subsystems.

Comment on lines +69 to +74
ChainedTransformationDescriptionBuilderFactory factory = KernelAPIVersion.createChainedTransformationDescriptionBuilderFactory(registry);
registerChainedManagementTransformers(registry, factory);
registerChainedServerGroupTransformers(registry, factory);
registerProfileTransformers(registry);
registerSocketBindingGroupTransformers(registry);
registerDeploymentTransformers(registry);
registerSocketBindingGroupTransformers(registry, factory);
registerDeploymentTransformers(registry, factory);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why we are only changing the Domain Transformers? Shouldn't we also change and adapt in this PR how we are registering the other transformers?

For example, at ElytronSubsystemTransformers we have:

@Override
    public void registerTransformers(SubsystemTransformerRegistration registration) {
        ChainedTransformationDescriptionBuilder chainedBuilder = TransformationDescriptionBuilder.Factory.createChainedSubystemInstance(registration.getCurrentSubsystemVersion());

What would be the equivalent code to create ChainedTransformationDescriptionBuilder using the current Stability level?

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 1, 2025

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label Apr 1, 2025
@pferraro
Copy link
Copy Markdown
Contributor Author

pferraro commented Apr 2, 2025

Bump (to prevent github autoclose)

@github-actions github-actions Bot removed the Stale label Apr 3, 2025
@github-actions
Copy link
Copy Markdown

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label May 18, 2025
@pferraro
Copy link
Copy Markdown
Contributor Author

Bump (to prevent github autoclose). @bstansberry Are we still interested in this? If so, can you take a look?

Copy link
Copy Markdown
Contributor

@bstansberry bstansberry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pferraro I had a look and made comments. I think Yeray's earlier are the more critical ones.

Re whether we are interested in this, TBH I'm relying on you and @yersan to tell me. I think we are because in all the discussions about it we keep working on it and I think we'd stop if we decided not to do it. ;) But the details of the back-and-forth are flushed from memory, partly because I'm relying on you guys.

registry.addAttributeCheck(attribute, rejectChecker);
for (String rejectedAttribute : rejectedAttributes) {
this.registry.addAttributeCheck(rejectedAttribute, rejectChecker);
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this method be deprecated? Just reading the diff it seems like it's unable to apply the desired 'enables' check so it's just assuming. Which is ok temporarily but perhaps should be deprecated.

It seems like the javadoc in the interface should explain the behavior re the 'enables' call for all the methods.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#6589 adds the deprecation.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for that - I'll rebase this branch on that change next week.

public T addRejectChecks(List<RejectAttributeChecker> rejectCheckers, String... rejectedAttributes) {
for (RejectAttributeChecker rejectChecker : rejectCheckers) {
addRejectCheck(rejectChecker, rejectedAttributes);
this.addRejectCheck(rejectChecker, rejectedAttributes);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment re deprecation.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#6589 adds the deprecation.

public T addRenames(Map<String, String> renames) {
for (Map.Entry<String, String> rename : renames.entrySet()) {
registry.addRenamedAttribute(rename.getKey(), rename.getValue());
this.addRename(rename.getKey(), rename.getValue());
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment re deprecation.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#6589 adds the deprecation.

@@ -131,10 +132,6 @@ public T setValueConverter(AttributeConverter attributeConverter, String... conv
return thisBuilder();
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment re deprecation.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#6589 adds the deprecation.

* @deprecated Use {@link ResourceTransformationDescriptionBuilder#addChildResource(ResourceRegistration)} instead.
*/
ResourceTransformationDescriptionBuilder addChildResource(ResourceDefinition definition);
@Deprecated(forRemoval = true)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to reviewers: I only see 5 uses of this in WF, all in the legacy Picketbox extensions.

*/
ResourceTransformationDescriptionBuilder addChildResource(ResourceDefinition definition, DynamicDiscardPolicy dynamicDiscardPolicy);

@Deprecated(forRemoval = true)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to reviewers: I don't see any uses of this in WF.

* @return the builder for this resource
* @deprecated Use other methods for creating child transformation descriptions
*/
@Deprecated(forRemoval = true)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to reviewers: I see no use in WF.

@github-actions github-actions Bot removed the Stale label May 23, 2025
@yersan
Copy link
Copy Markdown
Contributor

yersan commented May 28, 2025

@pferraro I had a look and made comments. I think Yeray's earlier are the more critical ones.

Re whether we are interested in this, TBH I'm relying on you and @yersan to tell me. I think we are because in all the discussions about it we keep working on it and I think we'd stop if we decided not to do it. ;) But the details of the back-and-forth are flushed from memory, partly because I'm relying on you guys.

This is something good to have, since it will allow us to test community-community paired stability levels in mixed domains. I don't see it as something urgent to do; I have never read issues with mixed domains on the community side, so, probably something that is not widely used. It brings up more maintenance, and the fix indeed looks complex. However, having those tests in practice is good and necessary. It will also help later to future promotions by moving a feature from community stability to a higher one.

@pferraro I don't know how complex this would end up at the end, not only on the solution but also on the future maintenance, so if you still have doubts whether this is necessary, I would be fine because I don't think this scenario is widely used in upstream.

@github-actions
Copy link
Copy Markdown

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label Jul 13, 2025
@pferraro
Copy link
Copy Markdown
Contributor Author

Bump to keep alive.

@github-actions github-actions Bot removed the Stale label Jul 14, 2025
@github-actions
Copy link
Copy Markdown

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label Aug 29, 2025
@pferraro
Copy link
Copy Markdown
Contributor Author

Bump to keep alive.

@github-actions github-actions Bot removed the Stale label Aug 30, 2025
@github-actions
Copy link
Copy Markdown

There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.

@github-actions github-actions Bot added the Stale label Oct 14, 2025
@bstansberry
Copy link
Copy Markdown
Contributor

/retest

@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration (with SecurityManager) Build 15181 outcome was FAILURE using a merge of aa426d5
Summary: Tests failed: 5 (5 new), passed: 8281, ignored: 116 Build time: 04:59:33

Failed tests

org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[2]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration (with SecurityManager) Build 15273 outcome was FAILURE using a merge of aa426d5
Summary: Tests failed: 5 (5 new), passed: 8264, ignored: 115 Build time: 05:17:29

Failed tests

org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[2]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration Build 15004 outcome was FAILURE using a merge of aa426d5
Summary: Tests failed: 1 (1 new), passed: 4566, ignored: 59 Build time: 02:54:33

Failed tests

org.wildfly.test.integration.microprofile.jwt.propagation.JWTIdentityPropagationTestCase(layers-test).testInvokeEJBWithinSingleDeploymentOutflowNotConfigured: java.lang.AssertionError: Call was authenticated: expectedMessage:[targetCallerPrincipal: anonymous, targetIsCallerAdmin: false] returned msg:[hello testUser  hasJWT: true  targetCallerPrincipal: testUser, targetIsCallerAdmin: false  ctx: org.jboss.resteasy.plugins.server.servlet.ServletSecurityContext@3ab34544  targetBean context: org.jboss.as.ejb3.context.SessionContextImpl@5cdfdca7]
	at org.wildfly.test.integration.microprofile.jwt.propagation.JWTIdentityPropagationTestCase.testInvokeEJB(JWTIdentityPropagationTestCase.java:323)
	at org.wildfly.test.integration.microprofile.jwt.propagation.JWTIdentityPropagationTestCase.testInvokeEJBWithinSingleDeploymentOutflowNotConfigured(JWTIdentityPropagationTestCase.java:257)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
------- Stdout: -------
 [31m04:44:45,263 ERROR [stderr] (default task-2) java.lang.Throwable: hello testUser  hasJWT: true  targetCallerPrincipal: testUser, targetIsCallerAdmin: false  ctx: org.jboss.resteasy.plugins.server.servlet.ServletSecurityContext@3ab34544  targetBean context: org.jboss.as.ejb3.context.SessionContextImpl@5cdfdca7
 [0m [31m04:44:45,264 ERROR [stderr] (default task-2) 	at deployment.no-outflow-config.ear.no-outflow-config-web.war//org.wildfly.test.integration.microprofile.jwt.propagation.BeanEndPoint.helloRolesAllowed(BeanEndPoint.java:50)
 [0m [31m04:44:45,264 ERROR [stderr] (default task-2) 	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
 [0m [31m04:44:45,264 ERROR [stderr] (default task-2) 	at org.jboss.as.ee@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ee.component.ManagedReferenceMethodInterceptor.processInvocation(ManagedReferenceMethodInterceptor.java:35)
 [0m [31m04:44:45,264 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.weld.common@40.0.0.Beta1-SNAPSHOT//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.delegateInterception(Jsr299BindingsInterceptor.java:62)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.weld.common@40.0.0.Beta1-SNAPSHOT//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.doMethodInterception(Jsr299BindingsInterceptor.java:72)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.weld.common@40.0.0.Beta1-SNAPSHOT//org.jboss.as.weld.interceptors.Jsr299BindingsInterceptor.processInvocation(Jsr299BindingsInterceptor.java:85)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.ee@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ee.component.interceptors.UserInterceptorFactory$1.processInvocation(UserInterceptorFactory.java:46)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.component.invocationmetrics.ExecutionTimeInterceptor.processInvocation(ExecutionTimeInterceptor.java:26)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.as.jpa@40.0.0.Beta1-SNAPSHOT//org.jboss.as.jpa.interceptor.SBInvocationInterceptor.processInvocation(SBInvocationInterceptor.java:30)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,265 ERROR [stderr] (default task-2) 	at org.wildfly.concurrency@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ee.concurrent.ConcurrentContextInterceptor.processInvocation(ConcurrentContextInterceptor.java:28)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InitialInterceptor.processInvocation(InitialInterceptor.java:40)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.ChainedInterceptor.processInvocation(ChainedInterceptor.java:53)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ee@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ee.component.interceptors.ComponentDispatcherInterceptor.processInvocation(ComponentDispatcherInterceptor.java:35)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.component.pool.PooledInstanceInterceptor.processInvocation(PooledInstanceInterceptor.java:34)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.component.interceptors.AdditionalSetupInterceptor.processInvocation(AdditionalSetupInterceptor.java:39)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.tx.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java:237)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.tx.CMTTxInterceptor.required(CMTTxInterceptor.java:373)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.tx.CMTTxInterceptor.processInvocation(CMTTxInterceptor.java:143)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext$Invocation.proceed(InterceptorContext.java:509)
 [0m [31m04:44:45,266 ERROR [stderr] (default task-2) 	at org.jboss.weld.core@5.1.7.Final//org.jboss.weld.module.ejb.AbstractEJBRequestScopeActivationInterceptor.aroundInvoke(AbstractEJBRequestScopeActivationInterceptor.java:78)
 [0m [31m04:44:45,267 ERROR [stderr] (default task-2) 	at org.jboss.as.weld.common@40.0.0.Beta1-SNAPSHOT//org.jboss.as.weld.ejb.EjbRequestScopeActivationInterceptor.processInvocation(EjbRequestScopeActivationInterceptor.java:72)
 [0m [31m04:44:45,267 ERROR [stderr] (default task-2) 	at org.jboss.invocation@2.0.1.Final//org.jboss.invocation.InterceptorContext.proceed(InterceptorContext.java:422)
 [0m [31m04:44:45,267 ERROR [stderr] (default task-2) 	at org.jboss.as.ejb3@40.0.0.Beta1-SNAPSHOT//org.jboss.as.ejb3.component.interceptors.CurrentInvocationContextInterceptor.processInvocation(CurrentInvocationContextInterceptor.java:24)


@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration (with SecurityManager) Build 13 outcome was FAILURE using a merge of aa426d5
Summary: Tests failed: 5 (5 new), passed: 8046, ignored: 132 Build time: 04:51:28

Failed tests

org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[2]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


@wildfly-ci
Copy link
Copy Markdown

Core -> WildFly Preview Integration Build 84 outcome was FAILURE using a merge of aa426d5
Summary: Tests passed: 5512, ignored: 89; exit code 1 (Step: Build & test full (Maven)) (new) Build time: 04:36:37

@wildfly-ci
Copy link
Copy Markdown

Core -> Full Integration (with SecurityManager) Build 80 outcome was FAILURE using a merge of aa426d5
Summary: Tests failed: 6 (6 new), passed: 8074, ignored: 137 Build time: 05:35:20

Failed tests

org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "distributable-ejb"),
        ("infinispan-bean-management" => "default")
    ],
    "cache-container" => "foo",
    "cache" => "bar",
    "max-active-beans" => expression "${exp.max-active-beans:10000}",
    "idle-threshold" => expression "${exp.idle-threshold:PT10M}"
} for version 1.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.wildfly.extension.clustering.ejb.DistributableEjbTransformersTestCase.testRejections(DistributableEjbTransformersTestCase.java:122)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[0]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 8.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[1]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections[2]: java.lang.AssertionError: Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
java.lang.AssertionError: 
Expected transformation to get rejected {
    "operation" => "add",
    "address" => [
        ("subsystem" => "jgroups"),
        ("stack" => "maximal"),
        ("transport" => "TCP")
    ],
    "module" => "org.jgroups",
    "socket-binding" => "jgroups-tcp",
    "diagnostics-socket-binding" => "jgroups-diagnostics",
    "machine" => "machine1",
    "rack" => "rack1",
    "site" => "site1",
    "properties" => {"enable_bundling" => "true"},
    "client-ssl-context" => "my-client-ssl-context",
    "server-ssl-context" => "my-server-ssl-context"
} for version 10.0.0
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedAddOperation(ModelTestUtils.java:638)
	at org.jboss.as.model.test.ModelTestUtils.checkFailedTransformedBootOperations(ModelTestUtils.java:609)
	at org.jboss.as.clustering.jgroups.subsystem.JGroupsTransformersTestCase.testRejections(JGroupsTransformersTestCase.java:155)
------- Stderr: -------
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]
Error getting BootErrorCollector failures: org.jboss.as.controller.OperationFailedException: "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" [ "WFLYCTL0030: No resource definition is registered for address [(\"core-service\" => \"management\")]" ]


org.jboss.as.test.clustering.cluster.ejb.timer.DistributedTimerServiceTestCase.test(URL, URL): org.opentest4j.AssertionFailedError: class org.jboss.as.test.clustering.cluster.ejb.timer.beans.CalendarPersistentTimerBean={node-1=[]} ==> expected: not equal but was: <0>
	at org.jboss.as.test.clustering.cluster.ejb.timer.AbstractTimerServiceTestCase.test(AbstractTimerServiceTestCase.java:302)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
------- Stdout: -------
node-2 2026-04-18 04:58:33,207 INFO  [org.jboss.modules] (main) JBoss Modules version 2.1.6.Final
WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
WARNING: sun.misc.Unsafe::objectFieldOffset has been called by org.wildfly.security.manager.WildFlySecurityManager (jar:file:/store/repository/org/wildfly/security/wildfly-elytron-security-manager/2.8.4.Final/wildfly-elytron-security-manager-2.8.4.Final.jar!/)
WARNING: Please consider reporting this to the maintainers of class org.wildfly.security.manager.WildFlySecurityManager
WARNING: sun.misc.Unsafe::objectFieldOffset will be removed in a future release
node-2 2026-04-18 04:58:33,790 INFO  [org.jboss.msc] (main) JBoss MSC version 1.5.6.Final
node-2 2026-04-18 04:58:33,969 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0049: WildFly 40.0.0.Beta1-SNAPSHOT (WildFly Core 32.0.0.Beta8-SNAPSHOT) starting
node-2 2026-04-18 04:58:35,567 INFO  [org.wildfly.security] (Controller Boot Thread) ELY00001: WildFly Elytron version 2.8.4.Final
node-2 2026-04-18 04:58:36,825 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
node-2 2026-04-18 04:58:36,841 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.16.Final
node-2 2026-04-18 04:58:36,852 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.16.Final
node-2 2026-04-18 04:58:36,936 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 48) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 2.2)
node-2 2026-04-18 04:58:37,015 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.31.Final
node-2 2026-04-18 04:58:37,072 INFO  [org.wildfly.extension.health] (ServerService Thread Pool -- 58) WFLYHEALTH0001: Activating Base Health Subsystem
node-2 2026-04-18 04:58:37,098 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 59) WFLYCLINF0001: Activating Infinispan subsystem.
node-2 2026-04-18 04:58:37,100 INFO  [org.wildfly.extension.elytron.oidc._private] (ServerService Thread Pool -- 57) WFLYOIDC0001: Activating WildFly Elytron OIDC Subsystem
node-2 2026-04-18 04:58:37,120 INFO  [org.jboss.as.jaxrs] (ServerService Thread Pool -- 61) WFLYRS0016: RESTEasy version 6.2.16.Final
node-2 2026-04-18 04:58:37,125 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 60) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
node-2 2026-04-18 04:58:37,142 INFO  [org.jboss.as.clustering.jgroups] (ServerService Thread Pool -- 64) WFLYCLJG0001: Activating JGroups subsystem. JGroups version 5.5.4
node-2 2026-04-18 04:58:37,187 INFO  [org.jboss.as.connector] (MSC service thread 1-9) WFLYJCA0009: Starting Jakarta Connectors Subsystem (WildFly/IronJacamar 3.0.18.Final)
node-2 2026-04-18 04:58:37,200 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY00023: KeyStore file '/opt/buildAgent/work/e8e0dd9c7c4ba60/full/testsuite/integration/clustering/target/wildfly-2/standalone/configuration/application.keystore' does not exist. Used blank.
node-2 2026-04-18 04:58:37,216 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) WFLYJCA0018: Started Driver service with driver-name = h2
node-2 2026-04-18 04:58:37,233 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY01084: KeyStore /opt/buildAgent/work/e8e0dd9c7c4ba60/full/testsuite/integration/clustering/target/wildfly-2/standalone/configuration/application.keystore not found, it will be auto-generated on first use with a self-signed certificate for host localhost
node-2 2026-04-18 04:58:37,274 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 67) WFLYJSF0007: Activated the following Jakarta Server Faces Implementations: [main]
node-2 2026-04-18 04:58:37,290 INFO  [org.wildfly.extension.microprofile.jwt.smallrye] (ServerService Thread Pool -- 71) WFLYJWT0001: Activating MicroProfile JWT Subsystem
node-2 2026-04-18 04:58:37,296 INFO  [org.wildfly.extension.metrics] (ServerService Thread Pool -- 69) WFLYMETRICS0001: Activating Base Metrics Subsystem
node-2 2026-04-18 04:58:37,300 INFO  [org.wildfly.extension.microprofile.config.smallrye] (ServerService Thread Pool -- 70) WFLYCONF0001: Activating MicroProfile Config Subsystem
node-2 2026-04-18 04:58:37,360 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 73) WFLYNAM0001: Activating Naming Subsystem
node-2 2026-04-18 04:58:37,461 INFO  [org.jboss.as.ejb3] (MSC service thread 1-9) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 16 (per class), which is derived from the number of CPUs on this host.
node-2 2026-04-18 04:58:37,462 INFO  [org.jboss.as.ejb3] (MSC service thread 1-4) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived from thread worker pool sizing.
node-2 2026-04-18 04:58:37,477 INFO  [org.jboss.as.naming] (MSC service thread 1-6) WFLYNAM0003: Starting Naming Service
node-2 2026-04-18 04:58:37,510 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 81) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique.
node-2 2026-04-18 04:58:37,589 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-3) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]
node-2 2026-04-18 04:58:37,670 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 83) WFLYWS0002: Activating WebServices Extension
node-2 2026-04-18 04:58:37,714 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 82) WFLYUT0112: The value 'require-host-http11' attribute in the '/subsystem=undertow/server=default-server/http-listener=default' resource is 'false', which will be ignored. The server now always enforces the RFC 9112 requirement that HTTP/1.1 request messages include a Host header.
node-2 2026-04-18 04:58:37,719 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 82) WFLYUT0112: The value 'require-host-http11' attribute in the '/subsystem=undertow/server=default-server/https-listener=https' resource is 'false', which will be ignored. The server now always enforces the RFC 9112 requirement that HTTP/1.1 request messages include a Host header.
node-2 2026-04-18 04:58:37,852 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0003: Undertow 2.4.0.RC4 starting
node-2 2026-04-18 04:58:37,961 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 82) WFLYUT0014: Creating file handler for path '/opt/buildAgent/work/e8e0dd9c7c4ba60/full/testsuite/integration/clustering/target/wildfly-2/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
node-2 2026-04-18 04:58:37,971 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0012: Started server default-server.
node-2 2026-04-18 04:58:37,973 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) Queuing requests.
node-2 2026-04-18 04:58:37,976 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting
node-2 2026-04-18 04:58:38,005 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTP listener default listening on [::1]:8180
node-2 2026-04-18 04:58:38,005 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTPS listener https listening on [::1]:8543
node-2 2026-04-18 04:58:38,015 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow AJP listener ajp listening on [::1]:8109
node-2 2026-04-18 04:58:38,083 INFO  [org.jboss.modcluster] (ServerService Thread Pool -- 85) MODCLUSTER000001: Initializing mod_cluster version 2.1.0.Final
node-2 2026-04-18 04:58:38,095 INFO  [org.jboss.modcluster] (ServerService Thread Pool -- 85) MODCLUSTER000032: Listening to proxy advertisements on /224.0.1.105:23364


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants