/* * Copyright 2005-2010 the original author or authors. * * 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.wamblee.system.core; import junit.framework.TestCase; /** * * @author $author$ * @version $Revision$ */ public class AbstractComponentTest extends TestCase { public void testNotAllInterfacesStarted() { try { Component component = new AbstractComponent("xx", new ProvidedInterface[] { new DefaultProvidedInterface("xxx", String.class) }, new RequiredInterface[0]) { @Override protected Object doStart(Scope aScope) { // Empty, not starting service. return null; } @Override protected void doStop(Object aRuntime) { // Empty. } }; component .start(new DefaultScope(component.getProvidedInterfaces())); } catch (SystemAssemblyException e) { // e.printStackTrace(); return; } fail(); } public void testUnexpectedServicesStarted() { try { Component component = new AbstractComponent("xx", new ProvidedInterface[0], new RequiredInterface[0]) { @Override protected Object doStart(Scope aScope) { addInterface(new DefaultProvidedInterface("x", Integer.class), 100, aScope); return null; } @Override protected void doStop(Object aRuntime) { // Empty. } }; component .start(new DefaultScope(component.getProvidedInterfaces())); } catch (SystemAssemblyException e) { // e.printStackTrace(); return; } fail(); } }