blob: e07c71d630ac90b23b5c33bb5b6b0d6466551b8e [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.impl;
import java.io.ByteArrayOutputStream;
import java.util.zip.Deflater;
import java.util.zip.Inflater;
import org.apache.camel.ContextTestSupport;
import org.apache.camel.Exchange;
import org.apache.camel.Message;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
/**
* Unit test of the zip data format.
*/
public class ZipDataFormatTest extends ContextTestSupport {
private static final String TEXT = "The Cow in Apple Time \n"
+ "by: Robert Frost \n\n"
+ "Something inspires the only cow of late\n"
+ "To make no more of a wall than an open gate,\n"
+ "And think no more of wall-builders than fools.\n"
+ "Her face is flecked with pomace and she drools\n"
+ "A cider syrup. Having tasted fruit,\n"
+ "She scorns a pasture withering to the root.\n"
+ "She runs from tree to tree where lie and sweeten.\n"
+ "The windfalls spiked with stubble and worm-eaten.\n"
+ "She leaves them bitten when she has to fly.\n"
+ "She bellows on a knoll against the sky.\n"
+ "Her udder shrivels and the milk goes dry.";
@Override
public boolean isUseRouteBuilder() {
return false;
}
private void sendText() throws Exception {
template.send("direct:start", new Processor() {
public void process(Exchange exchange) throws Exception {
// Set the property of the charset encoding
exchange.setProperty(Exchange.CHARSET_NAME, "UTF-8");
Message in = exchange.getIn();
in.setBody(TEXT);
}
});
}
public void testMarshalTextToZipBestCompression() throws Exception {
context.addRoutes(new RouteBuilder() {
public void configure() {
from("direct:start").marshal().zip(Deflater.BEST_COMPRESSION).process(new ZippedMessageProcessor());
}
});
context.start();
sendText();
}
public void testMarshalTextToZipBestSpeed() throws Exception {
context.addRoutes(new RouteBuilder() {
public void configure() {
from("direct:start").marshal().zip(Deflater.BEST_SPEED).process(new ZippedMessageProcessor());
}
});
context.start();
sendText();
}
public void testMarshalTextToZipDefaultCompression() throws Exception {
context.addRoutes(new RouteBuilder() {
public void configure() {
from("direct:start").marshal().zip(Deflater.DEFAULT_COMPRESSION).process(new ZippedMessageProcessor());
}
});
context.start();
sendText();
}
public void testUnMarshalTextToZip() throws Exception {
context.addRoutes(new RouteBuilder() {
public void configure() {
from("direct:start").marshal().zip().unmarshal().zip().to("mock:result");
}
});
context.start();
MockEndpoint result = (MockEndpoint)context.getEndpoint("mock:result");
result.expectedBodiesReceived(TEXT);
sendText();
result.assertIsSatisfied();
}
private class ZippedMessageProcessor implements Processor {
public void process(Exchange exchange) throws Exception {
byte[] body = (byte[]) exchange.getIn().getBody(byte[].class);
Inflater inflater = new Inflater();
inflater.setInput(body);
// Create an expandable byte array to hold the inflated data
ByteArrayOutputStream bos = new ByteArrayOutputStream(body.length);
// Inflate the compressed data
byte[] buf = new byte[1024];
while (!inflater.finished()) {
int count = inflater.inflate(buf);
bos.write(buf, 0, count);
}
String result = new String(bos.toByteArray(), "UTF-8");
// does the testing
assertEquals(TEXT, result);
}
}
}