Package org.apache.hivemind.impl

Source Code of org.apache.hivemind.impl.TestServicePoint

// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed 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.hivemind.impl;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.hivemind.ApplicationRuntimeException;
import org.apache.hivemind.Location;
import org.apache.hivemind.internal.Module;
import org.apache.hivemind.internal.ServiceModel;
import org.apache.hivemind.internal.ServiceModelFactory;
import org.apache.hivemind.test.HiveMindTestCase;
import org.easymock.MockControl;

/**
* Test for {@link org.apache.hivemind.impl.ServicePointImpl}. Much of the testing is done using
* integration style tests, this just fills in some important gaps.
*
* @author Howard M. Lewis Ship
* @since 1.1
*/
public class TestServicePoint extends HiveMindTestCase
{
    private Module newModule()
    {
        ModuleImpl result = new ModuleImpl();

        result.setClassResolver(new DefaultClassResolver());
        result.setPackageName("");

        return result;
    }

    public void testUnknownInterfaceClass()
    {
        Location l = fabricateLocation(12);
        Module module = newModule();

        replayControls();

        ServicePointImpl sp = new ServicePointImpl();
        sp.setModule(module);
        sp.setServiceInterfaceName("foo.bar.Baz");
        sp.setExtensionPointId("zip.zap");
        sp.setLocation(l);

        try
        {
            sp.getServiceInterface();
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertEquals("Unable to find interface foo.bar.Baz (for service zip.zap).", ex
                    .getMessage());
            assertSame(l, ex.getLocation());
        }

        verifyControls();
    }

    public void testResultNotAssignableToServiceInterface()
    {
        Location l = fabricateLocation(187);
        ServicePointImpl sp = new ServicePointImpl();

        MockControl modulec = newControl(Module.class);
        Module module = (Module) modulec.getMock();

        Object service = new ArrayList();

        MockControl factoryc = newControl(ServiceModelFactory.class);
        ServiceModelFactory factory = (ServiceModelFactory) factoryc.getMock();

        MockControl modelc = newControl(ServiceModel.class);
        ServiceModel model = (ServiceModel) modelc.getMock();

        module.getServiceModelFactory("fred");
        modulec.setReturnValue(factory);

        factory.createServiceModelForService(sp);
        factoryc.setReturnValue(model);

        model.getService();
        modelc.setReturnValue(service);

        module.resolveType("java.util.List");
        modulec.setReturnValue(List.class);

        replayControls();

        sp.setExtensionPointId("foo.bar");
        sp.setServiceInterfaceName("java.util.List");
        sp.setLocation(l);
        sp.setModule(module);
        sp.setServiceModel("fred");

        try
        {
            sp.getService(Map.class);
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertEquals(
                    "Service foo.bar does not implement the requested interface (java.util.Map).  The declared service interface type is java.util.List.",
                    ex.getMessage());
            assertSame(l, ex.getLocation());
        }
    }
}
TOP

Related Classes of org.apache.hivemind.impl.TestServicePoint

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.