/** * 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.impl; import org.apache.camel.component.mllp.MllpWriteException; import org.apache.camel.test.util.PayloadBuilder; import org.junit.Before; import org.junit.Test; import static org.apache.camel.component.mllp.MllpEndpoint.END_OF_BLOCK; import static org.apache.camel.component.mllp.MllpEndpoint.END_OF_DATA; import static org.apache.camel.component.mllp.MllpEndpoint.START_OF_BLOCK; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; public class MllpBufferedSocketMessageWriterTest extends MllpSocketWriterTestSupport { MllpSocketWriter mllpSocketWriter; @Before public void setUp() throws Exception { mllpSocketWriter = new MllpBufferedSocketWriter(fakeSocket, false); } @Test public void testWriteMessage() throws Exception { byte[] expected = PayloadBuilder.build(START_OF_BLOCK, TEST_MESSAGE, END_OF_BLOCK, END_OF_DATA); mllpSocketWriter.writeEnvelopedPayload(TEST_MESSAGE.getBytes(), null); assertArrayEquals(expected, fakeSocket.payload()); } @Test public void testWriteNullMessage() throws Exception { byte[] message = null; byte[] expected = PayloadBuilder.build(START_OF_BLOCK, END_OF_BLOCK, END_OF_DATA); mllpSocketWriter.writeEnvelopedPayload(message, null); assertArrayEquals(expected, fakeSocket.payload()); } @Test public void testWriteEmptyMessage() throws Exception { byte[] message = new byte[0]; byte[] expected = PayloadBuilder.build(START_OF_BLOCK, END_OF_BLOCK, END_OF_DATA); mllpSocketWriter.writeEnvelopedPayload(message, null); assertArrayEquals(expected, fakeSocket.payload()); } @Test(expected = MllpWriteException.class) public void testGetOutputStreamFailure() throws Exception { fakeSocket.fakeSocketOutputStream = null; try { mllpSocketWriter.writeEnvelopedPayload(TEST_MESSAGE.getBytes(), null); } catch (MllpWriteException expectedEx) { verifyException(expectedEx); throw expectedEx; } } @Test(expected = MllpWriteException.class) public void testWriteToUnconnectedSocket() throws Exception { fakeSocket.connected = false; try { mllpSocketWriter.writeEnvelopedPayload(TEST_MESSAGE.getBytes(), null); } catch (MllpWriteException expectedEx) { verifyException(expectedEx); throw expectedEx; } } @Test(expected = MllpWriteException.class) public void testWriteToClosedSocket() throws Exception { fakeSocket.closed = true; try { mllpSocketWriter.writeEnvelopedPayload(TEST_MESSAGE.getBytes(), null); } catch (MllpWriteException expectedEx) { verifyException(expectedEx); throw expectedEx; } } @Test(expected = MllpWriteException.class) public void testWriteFailure() throws Exception { fakeSocket.fakeSocketOutputStream.failOnWriteArray = true; try { mllpSocketWriter.writeEnvelopedPayload(TEST_MESSAGE.getBytes(), null); } catch (MllpWriteException expectedEx) { verifyException(expectedEx); throw expectedEx; } } private void verifyException(MllpWriteException expectedEx) throws Exception { assertNotNull(expectedEx.getMessage()); assertArrayEquals(TEST_MESSAGE.getBytes(), expectedEx.getHl7Message()); assertNull(expectedEx.getHl7Acknowledgement()); assertArrayEquals(TEST_MESSAGE.getBytes(), expectedEx.getMllpPayload()); } }