Package org.apache.cxf.bus.osgi

Source Code of org.apache.cxf.bus.osgi.WorkQueueSingleConfigTest

/**
* 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.cxf.bus.osgi;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

import org.apache.cxf.bus.managers.WorkQueueManagerImpl;
import org.apache.cxf.workqueue.AutomaticWorkQueueImpl;
import org.apache.cxf.workqueue.WorkQueueManager;
import org.junit.Assert;
import org.junit.Test;
import org.osgi.service.cm.ConfigurationException;

@Deprecated
public class WorkQueueSingleConfigTest {
    @Test
    public void testReadConfig() throws IOException, ConfigurationException {
        WorkQueueManager wqm = new WorkQueueManagerImpl();
        Assert.assertNull(wqm.getNamedWorkQueue("default"));
        ManagedWorkQueueList workQueueList = new ManagedWorkQueueList();
        WorkQueueSingleConfig wqlSingleConfig =
            new WorkQueueSingleConfig(workQueueList);
        InputStream is = this.getClass().getResourceAsStream("org.apache.cxf.workqueues.cfg");
        Properties properties = new Properties();
        properties.load(is);
        wqlSingleConfig.updated(properties);
        workQueueList.addAllToWorkQueueManager(wqm);
        checkDefaultQueue(wqm);
    }

    private void checkDefaultQueue(WorkQueueManager wqm) {
        AutomaticWorkQueueImpl queue = (AutomaticWorkQueueImpl)wqm.getNamedWorkQueue("default");
        Assert.assertEquals(50, queue.getHighWaterMark());
        Assert.assertEquals(5, queue.getLowWaterMark());
        Assert.assertEquals(5, queue.getInitialSize());
    }
}
TOP

Related Classes of org.apache.cxf.bus.osgi.WorkQueueSingleConfigTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.