Package org.apache.geronimo.openejb.cluster.container.stateless

Source Code of org.apache.geronimo.openejb.cluster.container.stateless.ClusteredStatelessContainerTest$SFSB

/*
* 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.geronimo.openejb.cluster.container.stateless;

import java.net.URI;
import java.util.Collections;

import org.apache.geronimo.clustering.wadi.WADISessionManager;
import org.apache.geronimo.openejb.cluster.infra.NetworkConnectorTracker;
import org.apache.openejb.core.CoreDeploymentInfo;
import org.apache.openejb.core.DeploymentContext;
import org.apache.openejb.spi.SecurityService;
import org.codehaus.wadi.servicespace.ServiceRegistry;
import org.codehaus.wadi.servicespace.ServiceSpace;

import com.agical.rmock.extension.junit.RMockTestCase;

/**
* @version $Rev$ $Date$
*/
public class ClusteredStatelessContainerTest extends RMockTestCase {

    private WADISessionManager sessionManager;
    private ClusteredStatelessContainer container;
    private CoreDeploymentInfo deploymentInfo;
    private String deploymentId;
    private NetworkConnectorTracker tracker;

    @Override
    protected void setUp() throws Exception {
        sessionManager = (WADISessionManager) mock(WADISessionManager.class);
        sessionManager.getManager();
        modify().multiplicity(expect.from(0));
       
        sessionManager.registerListener(null);
        modify().multiplicity(expect.from(0)).args(is.NOT_NULL);
       
        ServiceSpace serviceSpace = sessionManager.getServiceSpace();
        modify().multiplicity(expect.from(0));
        ServiceRegistry serviceRegistry = serviceSpace.getServiceRegistry();
        modify().multiplicity(expect.from(0));
        serviceRegistry.getStartedService(NetworkConnectorTracker.NAME);
        modify().multiplicity(expect.from(0));
        tracker = (NetworkConnectorTracker) mock(NetworkConnectorTracker.class);
        modify().returnValue(tracker);

        SecurityService securityService = (SecurityService) mock(SecurityService.class);
        container = (ClusteredStatelessContainer) intercept(ClusteredStatelessContainer.class, new Object[] {"id",
                securityService,500,10,10,true});
        deploymentId = "deploymentId";
        deploymentInfo = new CoreDeploymentInfo(new DeploymentContext(deploymentId, null, null),
            SFSB.class,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null,
            null) {
            @Override
            public Object getDeploymentID() {
                return deploymentId;
            }
        };
    }
   
   
    public void testGetLocationsRetunsNullWhenDeploymentIsNotRegistered() throws Exception {
        startVerification();
       
        assertNull(container.getLocations(deploymentInfo));
    }
   
    public void testGetLocationsOK() throws Exception {
        tracker.getConnectorURIs(deploymentId);
        URI location = new URI("ejbd://host:1");
        modify().returnValue(Collections.singleton(location));
       
        startVerification();
       
        container.addSessionManager(deploymentId, sessionManager);
       
        URI[] actualLocations = container.getLocations(deploymentInfo);
        assertEquals(1, actualLocations.length);
        assertSame(location, actualLocations[0]);
    }
   
    public static class SFSB implements Runnable {
        public void run() {
        }
    }
   
}
TOP

Related Classes of org.apache.geronimo.openejb.cluster.container.stateless.ClusteredStatelessContainerTest$SFSB

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.