localFileData.setPath(localFile.getPath());
fileBatch.getFiles().add(localFileData);
try {
byte[] data = getBlock(10 * 1024);
NioUtils.write(data, localFile);
HttpPipeKey key = attachmentHttpPipe.put(fileBatch);
File target = attachmentHttpPipe.get(key);
byte[] getbytes = NioUtils.read(new File(target, localFile.getPath()));
check(data, getbytes);
} catch (IOException e) {
want.fail();