Skip to content

Commit

Permalink
CAMEL-20113: camel/tests consolidating (#12778)
Browse files Browse the repository at this point in the history
apache.camel.itest.jms
-JMSTransactionIsTransactedRedeliveredTest - almost the same case is tested in org.apache.camel.component.jms.tx.JMSTransactionIsTransactedRedeliveredTest, so this test is deleted.
org.apache.camel.itest.nettyhttp
-NettyHttpClientChunkedResponseTest - created similar test in netty-http component, with chunked response but without jetty. Original test was deleted.
  • Loading branch information
kulagaIA authored Jan 15, 2024
1 parent 6728c18 commit 7ef14b5
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 268 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* 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.netty.http;

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

public class NettyHttpClientChunkedResponseTest extends BaseNettyTest {

@Test
public void testNettyHttpClientChunkedResponse() throws Exception {
getMockEndpoint("mock:input").expectedBodiesReceived("Hello World");

String out = template.requestBody("netty-http:http://localhost:{{port}}/foo", "Hello World", String.class);
assertEquals("Bye World", out);

MockEndpoint.assertIsSatisfied(context);
}

@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
@Override
public void configure() {
from("netty-http:http://0.0.0.0:{{port}}/foo")
.to("mock:input")
.setHeader("Transfer-Encoding", constant("chunked"))
.transform().simple("Bye World");
}
};
}

}

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 7ef14b5

Please sign in to comment.