blob: 43f364e59a26c2270484d8cd343ce5f676722e23 [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.it;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import org.apache.camel.EndpointInject;
import org.apache.camel.RoutesBuilder;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.irc.IrcConfiguration;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Integration test for the {@link IrcConfiguration#isNamesOnJoin()} option.
* Joins a channel and asserts that the username of the current test user is
* listed for the channel.
*/
public class IrcsListUsersTest extends IrcIntegrationTestSupport {
private static final Logger LOGGER = LoggerFactory.getLogger(IrcsListUsersTest.class);
/** message code for a reply to a <code>NAMES</code> command. */
private static final String IRC_RPL_NAMREPLY = "353";
/** irc component uri. configured by properties */
private static final String PRODUCER_URI = "ircs:{{camelFrom}}@{{server}}/{{channel1}}";
@Override
protected RoutesBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
LOGGER.debug("Creating new test route");
from(PRODUCER_URI + "?namesOnJoin=true&onReply=true")
.choice()
.when(header("irc.messageType").isEqualToIgnoreCase("REPLY"))
.filter(header("irc.num").isEqualTo(IRC_RPL_NAMREPLY))
.to("mock:result").stop();
}
};
}
@Test
public void test() throws Exception {
resultEndpoint.expectedMessageCount(1);
resultEndpoint.assertIsSatisfied();
String body = resultEndpoint.getExchanges().get(0).getIn().getBody(String.class);
LOGGER.debug("Received usernames: [{}]", body);
String username = properties.getProperty("camelFrom");
assertTrue("userlist does not contain test user", body.contains(username));
}
}