blob: a8197716de94643b79d139bd3aa20309ccf97c26 [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.impl;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.Socket;
public abstract class MllpSocketWriterTestSupport {
static final String TEST_MESSAGE =
"MSH|^~\\&|ADT|EPIC|JCAPS|CC|20161206193919|RISTECH|ADT^A08|00001|D|2.3^^|||||||" + '\r'
+ "EVN|A08|20150107161440||REG_UPDATE_SEND_VISIT_MESSAGES_ON_PATIENT_CHANGES|RISTECH^RADIOLOGY^TECHNOLOGIST^^^^^^UCLA^^^^^RRMC||" + '\r'
+ "PID|1|2100355^^^MRN^MRN|2100355^^^MRN^MRN||MDCLS9^MC9||19700109|F||U|111 HOVER STREET^^LOS ANGELES^CA^90032^USA^P^^LOS ANGELE|LOS ANGELE|"
+ "(310)725-6952^P^PH^^^310^7256952||ENGLISH|U||60000013647|565-33-2222|||U||||||||N||" + '\r'
+ "PD1|||UCLA HEALTH SYSTEM^^10|10002116^ADAMS^JOHN^D^^^^^EPIC^^^^PROVID||||||||||||||" + '\r'
+ "NK1|1|DOE^MC9^^|OTH|^^^^^USA|(310)888-9999^^^^^310^8889999|(310)999-2222^^^^^310^9992222|Emergency Contact 1|||||||||||||||||||||||||||" + '\r'
+ "PV1|1|OUTPATIENT|RR CT^^^1000^^^^^^^DEPID|EL|||017511^TOBIAS^JONATHAN^^^^^^EPIC^^^^PROVID|017511^TOBIAS^JONATHAN^^^^^^EPIC^^^^PROVID||||||"
+ "CLR|||||60000013647|SELF|||||||||||||||||||||HOV_CONF|^^^1000^^^^^^^||20150107161438||||||||||" + '\r'
+ "PV2||||||||20150107161438||||CT BRAIN W WO CONTRAST||||||||||N|||||||||||||||||||||||||||" + '\r'
+ "ZPV||||||||||||20150107161438|||||||||" + '\r'
+ "AL1|1||33361^NO KNOWN ALLERGIES^^NOTCOMPUTRITION^NO KNOWN ALLERGIES^EXTELG||||||" + '\r'
+ "DG1|1|DX|784.0^Headache^DX|Headache||VISIT" + '\r'
+ "GT1|1|1000235129|MDCLS9^MC9^^||111 HOVER STREET^^LOS ANGELES^CA^90032^USA^^^LOS ANGELE|(310)725-6952^^^^^310^7256952||19700109|F|P/F|SLF|"
+ "565-33-2222|||||^^^^^USA|||UNKNOWN|||||||||||||||||||||||||||||" + '\r'
+ "UB2||||||||" + '\r'
+ '\n';
static final String TEST_ACKNOWLEDGEMENT =
"MSH|^~\\&|JCAPS|CC|ADT|EPIC|20161206193919|RISTECH|ACK^A08|00001|D|2.3^^|||||||" + '\r'
+ "MSA|AA|00001|" + '\r'
+ '\n';
FakeSocket fakeSocket = new FakeSocket();
class FakeSocket extends Socket {
boolean connected = true;
boolean closed;
FakeSocketOutputStream fakeSocketOutputStream = new FakeSocketOutputStream();
FakeSocket() {
}
@Override
public boolean isConnected() {
return connected;
}
@Override
public boolean isClosed() {
return closed;
}
@Override
public OutputStream getOutputStream() throws IOException {
if (fakeSocketOutputStream == null) {
return super.getOutputStream();
}
return fakeSocketOutputStream;
}
byte[] payload() {
if (fakeSocketOutputStream != null) {
return fakeSocketOutputStream.fakeOutputStream.toByteArray();
}
return null;
}
}
class FakeSocketOutputStream extends OutputStream {
ByteArrayOutputStream fakeOutputStream = new ByteArrayOutputStream();
boolean failOnWrite;
boolean failOnWriteArray;
Byte writeFailOn;
byte[] writeArrayFailOn;
FakeSocketOutputStream() {
}
@Override
public void write(int b) throws IOException {
if (failOnWrite) {
throw new IOException("Faking write failure");
} else if (writeFailOn != null && writeFailOn == b) {
throw new IOException("Faking write failure");
}
fakeOutputStream.write(b);
}
@Override
public void write(byte[] array, int off, int len) throws IOException {
if (failOnWriteArray) {
throw new IOException("Faking write array failure");
}
if (writeArrayFailOn != null) {
if (writeArrayFailOn == array) {
throw new IOException("Faking write array failure");
}
for (int i = 0; i < Math.min(len, writeArrayFailOn.length); ++i) {
if (array[off + i] != writeArrayFailOn[i]) {
super.write(array, off, len);
return;
}
}
throw new IOException("Faking write array failure");
} else {
super.write(array, off, len);
}
}
}
}