blob: 53193cef9bd994fd0d174bc2ad1dccb98f228ba6 [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.pubnub;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
public class PubNubConfigurationTest extends CamelTestSupport {
@Test(expected = IllegalArgumentException.class)
public void createEndpointWithIllegalArguments() throws Exception {
PubNubComponent component = new PubNubComponent(context);
component.createEndpoint("pubnub");
}
@Test
public void createEndpointWithMinimalConfiguration() throws Exception {
PubNubComponent component = new PubNubComponent(context);
PubNubEndpoint endpoint = (PubNubEndpoint) component.createEndpoint("pubnub:xxx?subscribeKey=mysubkey");
assertEquals("xxx", endpoint.getConfiguration().getChannel());
assertEquals("mysubkey", endpoint.getConfiguration().getSubscribeKey());
assertTrue(endpoint.getConfiguration().isSecure());
}
@Test
public void createEndpointWithMaximalConfiguration() throws Exception {
PubNubComponent component = new PubNubComponent(context);
PubNubEndpoint endpoint = (PubNubEndpoint)component
.createEndpoint("pubnub:xxx?subscribeKey=mysubkey&publishKey=mypubkey&secretKey=secrets&uuid=myuuid&operation=PUBLISH&secure=false&authKey=authKey");
assertEquals("xxx", endpoint.getConfiguration().getChannel());
assertEquals("mysubkey", endpoint.getConfiguration().getSubscribeKey());
assertEquals("mypubkey", endpoint.getConfiguration().getPublishKey());
assertEquals("secrets", endpoint.getConfiguration().getSecretKey());
assertEquals("myuuid", endpoint.getConfiguration().getUuid());
assertEquals("PUBLISH", endpoint.getConfiguration().getOperation());
assertEquals("authKey", endpoint.getConfiguration().getAuthKey());
assertFalse(endpoint.getConfiguration().isSecure());
}
}