summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock
diff options
context:
space:
mode:
Diffstat (limited to 'tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock')
-rw-r--r--tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockAssemblyFactory.java156
-rw-r--r--tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockModuleFactory.java115
2 files changed, 0 insertions, 271 deletions
diff --git a/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockAssemblyFactory.java b/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockAssemblyFactory.java
deleted file mode 100644
index 5cb80b29aa..0000000000
--- a/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockAssemblyFactory.java
+++ /dev/null
@@ -1,156 +0,0 @@
-/**
- *
- * Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
- *
- * 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.tuscany.container.js.mock;
-
-import org.apache.tuscany.container.js.assembly.JavaScriptAssemblyFactory;
-import org.apache.tuscany.container.js.assembly.JavaScriptImplementation;
-import org.apache.tuscany.container.js.assembly.impl.JavaScriptAssemblyFactoryImpl;
-import org.apache.tuscany.core.config.JavaIntrospectionHelper;
-import org.apache.tuscany.core.context.AggregateContext;
-import org.apache.tuscany.core.system.assembly.SystemAssemblyFactory;
-import org.apache.tuscany.core.system.assembly.SystemImplementation;
-import org.apache.tuscany.core.system.assembly.impl.SystemAssemblyFactoryImpl;
-import org.apache.tuscany.model.assembly.AssemblyModelContext;
-import org.apache.tuscany.model.assembly.Component;
-import org.apache.tuscany.model.assembly.ConfiguredService;
-import org.apache.tuscany.model.assembly.Scope;
-import org.apache.tuscany.model.assembly.Service;
-import org.apache.tuscany.model.assembly.SimpleComponent;
-import org.apache.tuscany.model.assembly.impl.AssemblyModelContextImpl;
-import org.apache.tuscany.model.types.java.JavaServiceContract;
-
-/**
- * Generates test components and module assemblies
- *
- * @version $Rev: 377775 $ $Date: 2006-02-14 09:18:31 -0800 (Tue, 14 Feb 2006) $
- */
-public class MockAssemblyFactory {
-
- private static JavaScriptAssemblyFactory factory = new JavaScriptAssemblyFactoryImpl();
-
- private static SystemAssemblyFactory systemFactory = new SystemAssemblyFactoryImpl();
-
- public static SimpleComponent createComponent(String name, String scriptFile, Class type, Scope scope) {
- SimpleComponent sc = factory.createSimpleComponent();
- JavaScriptImplementation impl = factory.createJavaScriptImplementation();
- impl.setComponentType(factory.createComponentType());
- impl.setScriptFile(scriptFile);
- sc.setComponentImplementation(impl);
- Service s = factory.createService();
- String serviceName = type.getName().substring(type.getName().lastIndexOf('.')+1);
- s.setName(serviceName);
- JavaServiceContract contract = factory.createJavaServiceContract();
- s.setServiceContract(contract);
- contract.setScope(scope);
- contract.setInterface(type);
- impl.getComponentType().getServices().add(s);
- ConfiguredService cService = factory.createConfiguredService();
- cService.setService(s);
- cService.initialize(new AssemblyModelContextImpl(null,null));
- sc.getConfiguredServices().add(cService);
- sc.setName(name);
- sc.setComponentImplementation(impl);
- return sc;
- }
-
- public static Component createSystemComponent(String name, String type, Scope scope) throws NoSuchMethodException,
- ClassNotFoundException {
- Class claz = JavaIntrospectionHelper.loadClass(type);
- Component sc = null;
- if (AggregateContext.class.isAssignableFrom(claz)) {
- sc = systemFactory.createModuleComponent();
- } else {
- sc = systemFactory.createSimpleComponent();
- }
- SystemImplementation impl = systemFactory.createSystemImplementation();
- impl.setImplementationClass(claz);
- sc.setComponentImplementation(impl);
- Service s = systemFactory.createService();
- JavaServiceContract ji = systemFactory.createJavaServiceContract();
- s.setServiceContract(ji);
- ji.setScope(scope);
- impl.setComponentType(systemFactory.createComponentType());
- impl.getComponentType().getServices().add(s);
- sc.setName(name);
- sc.setComponentImplementation(impl);
- return sc;
- }
-
- // public static SimpleComponent createComponent(String name, String scriptFile, String serviceName, ScopeEnum
- // scope)
- // throws NoSuchMethodException, ClassNotFoundException {
- // SimpleComponent sc = new PojoSimpleComponent();
- // PojoJavaScriptImplementation impl = new PojoJavaScriptImplementation();
- // impl.setScriptFile(scriptFile);
- // impl.initialize(new AssemblyModelContextImpl());
- //
- // sc.setComponentImplementation(impl);
- // Service s = new PojoService();
- // s.setName(serviceName.substring(serviceName.lastIndexOf('.') + 1));
- // PojoJavaInterface ji = new PojoJavaInterface();
- // ji.setInterface(serviceName);
- // Class claz = JavaIntrospectionHelper.loadClass(serviceName);
- // PojoInterfaceType iType = new PojoInterfaceType();
- // iType.setInstanceClass(claz);
- // for (Method m : claz.getMethods()) {
- // // assume no method overloading
- // PojoOperationType type = new PojoOperationType();
- // type.setName(m.getName());
- // for (Class inputType : m.getParameterTypes()) {
- // type.setOutputType(new SDOType(null,null,inputType,Collections.EMPTY_LIST));
- // }
- // iType.addOperationType(type);
- // }
- // ji.setInterfaceType(iType);
- //
- //
- // s.setInterfaceContract(ji);
- // ji.setScope(scope);
- // impl.getServices().add(s);
- // sc.setName(name);
- // sc.setComponentImplementation(impl);
- // PojoConfiguredService cService = new PojoConfiguredService();
- // cService.setService(s);
- // sc.getConfiguredServices().add(cService);
- // return sc;
- // }
- //
- // public static Component createSystemComponent(String name, String type, ScopeEnum scope) throws
- // NoSuchMethodException,
- // ClassNotFoundException {
- //
- // Class claz = JavaIntrospectionHelper.loadClass(type);
- // PojoComponent sc = null;
- // if (AggregateContext.class.isAssignableFrom(claz)) {
- // sc = new PojoAggregateComponent();
- // } else {
- // sc = new PojoSimpleComponent();
- // }
- // SystemImplementation impl = new PojoSystemImplementation();
- // impl.setClass(type);
- // sc.setComponentImplementation(impl);
- // Service s = new PojoService();
- // JavaInterface ji = new PojoJavaInterface();
- // s.setInterfaceContract(ji);
- // ji.setScope(scope);
- // impl.getServices().add(s);
- // sc.setName(name);
- // sc.setComponentImplementation(impl);
- // return sc;
- // }
-
-}
diff --git a/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockModuleFactory.java b/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockModuleFactory.java
deleted file mode 100644
index fe66104000..0000000000
--- a/tags/java-stable-20060304/sca/container.js/src/test/java/org/apache/tuscany/container/js/mock/MockModuleFactory.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/**
- *
- * Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
- *
- * 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.tuscany.container.js.mock;
-
-import org.apache.tuscany.common.resource.impl.ResourceLoaderImpl;
-import org.apache.tuscany.container.js.assembly.mock.HelloWorldService;
-import org.apache.tuscany.model.assembly.AssemblyFactory;
-import org.apache.tuscany.model.assembly.AssemblyModelContext;
-import org.apache.tuscany.model.assembly.Component;
-import org.apache.tuscany.model.assembly.ConfiguredReference;
-import org.apache.tuscany.model.assembly.ConfiguredService;
-import org.apache.tuscany.model.assembly.Module;
-import org.apache.tuscany.model.assembly.Reference;
-import org.apache.tuscany.model.assembly.Scope;
-import org.apache.tuscany.model.assembly.Service;
-import org.apache.tuscany.model.assembly.impl.AssemblyFactoryImpl;
-import org.apache.tuscany.model.assembly.impl.AssemblyModelContextImpl;
-import org.apache.tuscany.model.scdl.loader.impl.SCDLAssemblyModelLoaderImpl;
-import org.apache.tuscany.model.types.java.JavaServiceContract;
-
-/**
- * Generates mock modules
- *
- * @version $Rev$ $Date$
- */
-public class MockModuleFactory {
-
- private static AssemblyFactory factory = new AssemblyFactoryImpl();
-
- private static AssemblyModelContext assemblyContext = new AssemblyModelContextImpl(new AssemblyFactoryImpl(),
- new SCDLAssemblyModelLoaderImpl(null), new ResourceLoaderImpl(Thread.currentThread().getContextClassLoader()));
-
- private MockModuleFactory() {
- }
-
- public static Module createModule() throws Exception {
- Component sourceComponent = MockAssemblyFactory.createComponent("source",
- "org/apache/tuscany/container/js/assembly/mock/HelloWorldImpl.js", HelloWorldService.class, Scope.MODULE);
- Component targetComponent = MockAssemblyFactory.createComponent("target",
- "org/apache/tuscany/container/js/assembly/mock/HelloWorldImpl.js", HelloWorldService.class, Scope.MODULE);
-
- Service targetService = factory.createService();
- JavaServiceContract targetContract = factory.createJavaServiceContract();
- targetContract.setInterface(HelloWorldService.class);
- targetService.setServiceContract(targetContract);
- targetService.setName("GenericComponent");
- ConfiguredService cTargetService = factory.createConfiguredService();
- cTargetService.setService(targetService);
- cTargetService.initialize(assemblyContext);
- targetComponent.getConfiguredServices().add(cTargetService);
- targetComponent.initialize(assemblyContext);
-
- Reference ref = factory.createReference();
- ConfiguredReference cref = factory.createConfiguredReference();
- ref.setName("setGenericComponent");
- JavaServiceContract inter = factory.createJavaServiceContract();
- inter.setInterface(HelloWorldService.class);
- ref.setServiceContract(inter);
- cref.setReference(ref);
- cref.getTargetConfiguredServices().add(cTargetService);
- cref.initialize(assemblyContext);
- sourceComponent.getConfiguredReferences().add(cref);
- sourceComponent.initialize(assemblyContext);
-
- Module module = factory.createModule();
- module.setName("test.module");
- module.getComponents().add(sourceComponent);
- module.getComponents().add(targetComponent);
- module.initialize(assemblyContext);
- return module;
- }
-
- // public static Module createModule() throws Exception {
- // Component sourceComponent =
- // MockAssemblyFactory.createComponent("source","org/apache/tuscany/container/js/assembly/mock/HelloWorldImpl.js",HelloWorldService.class.getCanonicalName(),ScopeEnum.MODULE_LITERAL);
- // Component targetComponent =
- // MockAssemblyFactory.createComponent("target","org/apache/tuscany/container/js/assembly/mock/HelloWorldImpl.js",HelloWorldService.class.getCanonicalName(),ScopeEnum.MODULE_LITERAL);
- // PojoReference ref = new PojoReference();
- // PojoConfiguredReference cref = new PojoConfiguredReference();
- // ref.setName("helloWorld");
- // PojoInterface inter = new PojoJavaInterface();
- // PojoInterfaceType type = new PojoInterfaceType();
- // type.setInstanceClass(HelloWorldService.class);
- // PojoOperationType oType = new PojoOperationType();
- // oType.setName("hello");
- // SDOType inputType = new SDOType("String","",String.class,null);
- // oType.setInputType(inputType);
- // type.addOperationType(oType);
- // inter.setInterfaceType(type);
- // ref.setInterfaceContract(inter);
- // cref.setReference(ref);
- // cref.setPart(targetComponent);
- // PojoPort port = new PojoPort();
- // port.setName("HelloWorldService");
- // cref.setPort(port);
- // sourceComponent.getConfiguredReferences().add(cref);
- // PojoModule module = new PojoModule();
- // module.setName("test.module");
- // module.addComponent(sourceComponent);
- // module.addComponent(targetComponent);
- // return module;
- // }
-
-}