blob: 621405911eef120f831b292e79eb987d8ae12225 [file] [log] [blame]
/**
* 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.mllp;
import java.util.concurrent.TimeUnit;
import org.apache.camel.builder.NotifyBuilder;
import org.apache.camel.test.mllp.Hl7TestMessageGenerator;
public class MllpTcpServerConsumerOptionalEndOfDataWithValidationTest extends TcpServerConsumerEndOfDataAndValidationTestSupport {
@Override
boolean validatePayload() {
return true;
}
@Override
boolean requireEndOfData() {
return false;
}
@Override
public void testInvalidMessage() throws Exception {
expectedInvalidCount = 1;
runInvalidMessage();
}
@Override
public void testNthInvalidMessage() throws Exception {
expectedInvalidCount = 1;
runNthInvalidMessage();
}
@Override
public void testMessageContainingEmbeddedStartOfBlock() throws Exception {
expectedInvalidCount = 1;
runMessageContainingEmbeddedStartOfBlock();
}
@Override
public void testNthMessageContainingEmbeddedStartOfBlock() throws Exception {
expectedInvalidCount = 1;
runNthMessageContainingEmbeddedStartOfBlock();
}
@Override
public void testMessageContainingEmbeddedEndOfBlock() throws Exception {
expectedInvalidCount = 1;
setExpectedCounts();
NotifyBuilder done = new NotifyBuilder(context()).whenDone(1).create();
mllpClient.sendFramedData(Hl7TestMessageGenerator.generateMessage().replaceFirst("EVN", "EVN" + MllpProtocolConstants.END_OF_BLOCK));
assertTrue("Exchange should have completed", done.matches(5, TimeUnit.SECONDS));
}
@Override
public void testInvalidMessageContainingEmbeddedEndOfBlock() throws Exception {
expectedInvalidCount = 1;
runInvalidMessageContainingEmbeddedEndOfBlock();
}
@Override
public void testNthMessageContainingEmbeddedEndOfBlock() throws Exception {
expectedInvalidCount = 1;
runNthMessageContainingEmbeddedEndOfBlock();
}
@Override
public void testMessageWithoutEndOfDataByte() throws Exception {
expectedCompleteCount = 1;
runMessageWithoutEndOfDataByte();
}
}