oscerd commented on code in PR #25641: URL: https://github.com/apache/camel/pull/25641#discussion_r3851363642
########## components/camel-as2/camel-as2-api/src/test/java/org/apache/camel/component/as2/api/protocol/ResponseMDNPerRequestKeysTest.java: ########## @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.component.as2.api.protocol; + +import java.lang.reflect.Field; +import java.security.KeyPair; +import java.security.KeyPairGenerator; + +import org.apache.camel.component.as2.api.AS2ServerConnection; +import org.apache.camel.component.as2.api.AS2SignatureAlgorithm; +import org.apache.hc.core5.http.HttpResponse; +import org.apache.hc.core5.http.message.BasicHttpResponse; +import org.apache.hc.core5.http.protocol.HttpCoreContext; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertNull; + +/** + * A single {@link ResponseMDN} is registered on the shared {@code HttpProcessor} and serves every request, so the + * security material resolved for one request must never be written back onto the instance. A deployment hosting more + * than one partner on different paths, each with its own keys, would otherwise be able to sign one partner's MDN with + * another partner's private key. + * <p/> + * The fields are {@code final}, which makes that structurally impossible; this test states the property directly so the + * intent survives a refactor that changes how the material is carried. + */ +class ResponseMDNPerRequestKeysTest { + + @Test + void perRequestKeysAreNotStoredOnTheSharedInstance() throws Exception { + // the three-arg constructor is the dynamic-keys form: material comes from the context per request + ResponseMDN responseMDN = new ResponseMDN("1.1", "camel.apache.org", null); + + KeyPair keyPair = KeyPairGenerator.getInstance("RSA").generateKeyPair(); + HttpCoreContext context = HttpCoreContext.create(); + context.setAttribute(AS2ServerConnection.AS2_SIGNING_ALGORITHM, AS2SignatureAlgorithm.SHA256WITHRSA); + context.setAttribute(AS2ServerConnection.AS2_SIGNING_PRIVATE_KEY, keyPair.getPrivate()); + context.setAttribute(AS2ServerConnection.AS2_DECRYPTING_PRIVATE_KEY, keyPair.getPrivate()); + + // 2xx so processing continues past the status check; no request on the context so it returns + // straight after the material has been resolved, which is the point under test + HttpResponse response = new BasicHttpResponse(200); + responseMDN.process(response, null, context); + + assertNull(fieldValue(responseMDN, "signingAlgorithm")); Review Comment: Applied. All five converted to `assertThat(...).isNull()` and the `org.junit.jupiter.api.Assertions.assertNull` static import dropped. One thing worth noting for anyone else touching this module: `camel-as2-api` did not declare `assertj-core` at all, so the dependency is added with `test` scope in the same commit — the version comes from the parent's dependency management, so no explicit `<version>`. `camel-as2-api` 95 tests green, and the test still fails against the pre-fix code, so the guard is unchanged. Pushed in 56eb4a2. _Claude Code on behalf of oscerd_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
