blob: 7f7b076eaf053acf562b8a4bc6e739585108e6b0 [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.irc;
import java.util.List;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Ignore;
import org.junit.Test;
/**
* @version
*/
public class IrcOnReplyTest extends CamelTestSupport {
protected MockEndpoint resultEndpoint;
protected String command = "WHO #camel-test";
protected String resultEnd = "End of WHO list";
private boolean sentMessages;
@Ignore("test manual, irc.codehaus.org has been closed")
@Test
public void testIrcMessages() throws Exception {
resultEndpoint = context.getEndpoint("mock:result", MockEndpoint.class);
resultEndpoint.expectedBodiesReceived(resultEnd);
resultEndpoint.assertIsSatisfied();
List<Exchange> list = resultEndpoint.getReceivedExchanges();
for (Exchange exchange : list) {
log.info("Received exchange: " + exchange + " headers: " + exchange.getIn().getHeaders());
}
}
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() throws Exception {
from(fromUri()).
choice().
when(header(IrcConstants.IRC_NUM).isEqualTo(315)).to("mock:result").
when(header(IrcConstants.IRC_MESSAGE_TYPE).isEqualTo("JOIN")).to("seda:consumerJoined");
from("seda:consumerJoined").process(new Processor() {
public void process(Exchange exchange) throws Exception {
sendMessages();
}
});
}
};
}
protected String fromUri() {
return "irc://camel-con@irc.codehaus.org:6667?nickname=camel-con&channels=#camel-test&onReply=true";
}
/**
* Lets send messages once the consumer has joined
*/
protected void sendMessages() {
if (!sentMessages) {
sentMessages = true;
// now the consumer has joined, lets send some messages
template.sendBody(fromUri(), command);
}
}
}