summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java')
-rw-r--r--sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java90
1 files changed, 0 insertions, 90 deletions
diff --git a/sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java b/sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java
deleted file mode 100644
index c1710e9b8e..0000000000
--- a/sandbox/rfeng/minicore/src/test/java/org/apache/tuscany/core/component/ComponentManagerImplTestCase.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * 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.tuscany.core.component;
-
-import java.net.URI;
-
-import junit.framework.TestCase;
-import org.easymock.EasyMock;
-
-import org.apache.tuscany.spi.component.Component;
-import org.apache.tuscany.spi.component.DuplicateNameException;
-
-/**
- * @version $Rev$ $Date$
- */
-public class ComponentManagerImplTestCase extends TestCase {
- private static final URI DOMAIN = URI.create("sca://localhost/");
- private static final URI ROOT1 = DOMAIN.resolve("root1");
- private static final URI GRANDCHILD = DOMAIN.resolve("parent/child2/grandchild");
-
- private ComponentManagerImpl manager;
-
- public void testRegister() throws Exception {
- Component root = EasyMock.createMock(Component.class);
- EasyMock.expect(root.getUri()).andReturn(ROOT1);
- EasyMock.replay(root);
- manager.register(root);
- assertEquals(root, manager.getComponent(ROOT1));
- EasyMock.verify(root);
-
- EasyMock.reset(root);
- EasyMock.expect(root.getUri()).andReturn(ROOT1);
- EasyMock.replay(root);
- manager.unregister(root);
- EasyMock.verify(root);
- assertEquals(null, manager.getComponent(ROOT1));
- }
-
- public void testRegisterGrandchild() throws Exception {
- Component root = EasyMock.createMock(Component.class);
- EasyMock.expect(root.getUri()).andReturn(GRANDCHILD);
- EasyMock.replay(root);
- manager.register(root);
- assertEquals(root, manager.getComponent(GRANDCHILD));
- EasyMock.verify(root);
- }
-
- public void testRegisterDuplicate() throws Exception {
- Component root = EasyMock.createMock(Component.class);
- EasyMock.expect(root.getUri()).andReturn(ROOT1);
- EasyMock.replay(root);
-
- Component duplicate = EasyMock.createMock(Component.class);
- EasyMock.expect(duplicate.getUri()).andReturn(ROOT1);
- EasyMock.replay(duplicate);
-
- manager.register(root);
- assertEquals(root, manager.getComponent(ROOT1));
- try {
- manager.register(duplicate);
- fail();
- } catch (DuplicateNameException e) {
- // expected
- }
- assertEquals(root, manager.getComponent(ROOT1));
- EasyMock.verify(root);
- EasyMock.verify(duplicate);
- }
-
- protected void setUp() throws Exception {
- super.setUp();
- manager = new ComponentManagerImpl();
- }
-}