/** * 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.apns.factory; import com.notnoop.apns.ApnsService; import org.apache.camel.component.apns.model.ConnectionStrategy; import org.apache.camel.component.apns.util.ApnsUtils; import org.apache.camel.component.apns.util.TestConstants; import org.junit.Assert; import org.junit.Test; public class ApnsServiceFactoryTest { @Test public void testApnsServiceFactoryWithFixedCertificates() throws Exception { ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificates(); ApnsService apnsService = apnsServiceFactory.getApnsService(); doBasicAsserts(apnsService); } @Test(expected = IllegalArgumentException.class) public void testApnsServiceFactoryAsPool0() throws Exception { ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificatesAsPool(0); ApnsService apnsService = apnsServiceFactory.getApnsService(); doBasicAsserts(apnsService); } @Test public void testApnsServiceFactoryAsPool1() throws Exception { ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificatesAsPool(1); ApnsService apnsService = apnsServiceFactory.getApnsService(); doBasicAsserts(apnsService); } private void doBasicAsserts(Object apnsService) { Assert.assertNotNull(apnsService); Assert.assertTrue(apnsService instanceof ApnsService); } public static ApnsServiceFactory createApnsServiceFactoryWithFixedCertificates() throws Exception { ApnsServiceFactory apnsServiceFactory = new ApnsServiceFactory(); apnsServiceFactory.setFeedbackHost(TestConstants.TEST_HOST); apnsServiceFactory.setFeedbackPort(TestConstants.TEST_FEEDBACK_PORT); apnsServiceFactory.setGatewayHost(TestConstants.TEST_HOST); apnsServiceFactory.setGatewayPort(TestConstants.TEST_GATEWAY_PORT); apnsServiceFactory.setSslContextParameters(ApnsUtils.clientContext()); return apnsServiceFactory; } private ApnsServiceFactory createApnsServiceFactoryWithFixedCertificatesAsPool(int poolSize) throws Exception { ApnsServiceFactory apnsServiceFactory = createApnsServiceFactoryWithFixedCertificates(); apnsServiceFactory.setConnectionStrategy(ConnectionStrategy.POOL); apnsServiceFactory.setPoolSize(poolSize); return apnsServiceFactory; } }