(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / SystemAssemblerTest.java
index 60d1b587007387dc710ef1e56cdfe0b32b8f04b7..d862b15e3eb4d08fbe2f1a64b89ebc60fa7b8425 100644 (file)
@@ -1,37 +1,84 @@
 package org.wamblee.system;
 
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.Arrays;
+
+import org.wamblee.system.Component.Status;
+import org.wamblee.test.AssertionUtils;
+
 import junit.framework.TestCase;
 
 public class SystemAssemblerTest extends TestCase {
-       
-       private ServiceRegistry _registry; 
-       
+
        @Override
        protected void setUp() throws Exception {
                super.setUp();
-               _registry = new DefaultServiceRegistry(); 
+       }
+
+       private static class MyMultiple implements Serializable, Runnable {
+               @Override
+               public void run() {
+                       // Empty
+               }
+       }
+
+       public void testFilterProvided() {
+               RequiredInterface req1 = new DefaultRequiredInterface("name",
+                               Runnable.class);
+               RequiredInterface req2 = new DefaultRequiredInterface("name",
+                               Serializable.class);
+               ProvidedInterface prov1 = new DefaultProvidedInterface(
+                               "name", Runnable.class);
+               ProvidedInterface prov2 = new DefaultProvidedInterface(
+                               "name", Serializable.class);
+               ProvidedInterface prov3 = new DefaultProvidedInterface(
+                               "name", MyMultiple.class);
+
+               AssertionUtils.assertEquals(new RequiredInterface[] { req1 },
+                               SystemAssembler.filterRequiredServices(prov1, Arrays
+                                               .asList(new RequiredInterface[] { req1 })));
+               AssertionUtils.assertEquals(new RequiredInterface[] { req1 },
+                               SystemAssembler.filterRequiredServices(prov1, Arrays
+                                               .asList(new RequiredInterface[] { req1, req2 })));
+               AssertionUtils.assertEquals(new RequiredInterface[] { req1, req2 },
+                               SystemAssembler.filterRequiredServices(prov3, Arrays
+                                               .asList(new RequiredInterface[] { req1, req2 })));
+
+               AssertionUtils.assertEquals(new ProvidedInterface[] { prov1 },
+                               SystemAssembler.filterProvidedServices(req1, Arrays
+                                               .asList(new ProvidedInterface[] { prov1 })));
+               AssertionUtils.assertEquals(new ProvidedInterface[] { prov1 },
+                               SystemAssembler.filterProvidedServices(req1, Arrays
+                                               .asList(new ProvidedInterface[] { prov1, prov2 })));
+               AssertionUtils.assertEquals(new ProvidedInterface[] { prov1, prov3 },
+                               SystemAssembler.filterProvidedServices(req1, Arrays
+                                               .asList(new ProvidedInterface[] { prov1, prov3 })));
        }
 
        public void testEnvironmentApplication() {
-               SubSystem environment = new Environment();
-               SubSystem application = new Application();
-               SystemAssembler assembler = new SystemAssembler(new SubSystem[] {
-                               environment, application }, new ServiceDescriptor[0]);
-               assembler.start(_registry, new Service[0]);
-               Service[] envServices = environment.getRunningServices();
+               Component environment = new Environment();
+               Component application = new Application();
+               SystemAssembler assembler = new SystemAssembler(new Component[] {
+                               environment, application }, new ProvidedInterface[0]);
+               assembler.start();
+               ProvidedInterface[] envServices = environment.getRunningServices();
                assertEquals(2, envServices.length);
-               Service[] appServices = environment.getRunningServices();
+               ProvidedInterface[] appServices = environment.getRunningServices();
                assertEquals(2, appServices.length);
-               assertEquals(2, _registry.listAllServices().length);
+
+               // TODO test stopping!!!!!!
+               environment.stop();
+               application.stop();
        }
 
        public void testApplicationEnvironment() {
                try {
-                       SubSystem environment = new Environment();
-                       SubSystem application = new Application();
-                       SystemAssembler assembler = new SystemAssembler(new SubSystem[] {
-                                       application, environment }, new ServiceDescriptor[0]);
-                       assembler.start(_registry, new Service[0]);
+                       Component environment = new Environment();
+                       Component application = new Application();
+                       SystemAssembler assembler = new SystemAssembler(new Component[] {
+                                       application, environment }, new ProvidedInterface[0]);
+                       assembler.start();
                } catch (SystemAssemblyException e) {
                        // e.printStackTrace();
                        return;
@@ -40,26 +87,56 @@ public class SystemAssemblerTest extends TestCase {
        }
 
        public void testComposite() {
-               SubSystem environment = new Environment();
-               SubSystem application = new Application();
-               CompositeSystem system = new CompositeSystem("all", new SubSystem[] {
-                               environment, application }, new ServiceDescriptor[0],
-                               new ServiceDescriptor[0]);
-               system.start("root", _registry, new Service[0]);
-               ServiceDescriptor[] required = system.getRequiredServices();
+               Component environment = new Environment();
+               Component application = new Application();
+               assertEquals(Status.NOT_STARTED, environment.getStatus());
+               assertEquals(Status.NOT_STARTED, application.getStatus());
+               Container system = new Container("all", new Component[] { environment,
+                               application }, new ProvidedInterface[0],
+                               new RequiredInterface[0]);
+               assertEquals(Status.NOT_STARTED, system.getStatus());
+               system.start("root");
+               RequiredInterface[] required = system.getRequiredServices();
                assertEquals(0, required.length);
-               ServiceDescriptor[] provided = system.getProvidedServices();
+               ProvidedInterface[] provided = system.getProvidedServices();
                assertEquals(0, provided.length);
+               assertEquals(Status.RUNNING, environment.getStatus());
+               assertEquals(Status.RUNNING, application.getStatus());
+               assertEquals(Status.RUNNING, system.getStatus());
+
+               system.stop();
+               assertEquals(Status.STOPPED, environment.getStatus());
+               assertEquals(Status.STOPPED, application.getStatus());
+               assertEquals(Status.STOPPED, system.getStatus());
        }
 
        public void testCompositeWithWrongProvidedInfo() {
                try {
-                       SubSystem environment = new Environment();
-                       SubSystem application = new Application();
-                       CompositeSystem system = new CompositeSystem("all",
-                                       new SubSystem[] { environment, application },
-                                       new ServiceDescriptor[] { new DefaultServiceDescriptor(
-                                                       String.class) }, new ServiceDescriptor[0]);
+                       Component environment = new Environment();
+                       Component application = new Application();
+                       Container system = new Container(
+                                       "all",
+                                       new Component[] { environment, application },
+                                       new ProvidedInterface[] { new DefaultProvidedInterface(
+                                                       "string", String.class) },
+                                       new DefaultRequiredInterface[0]);
+               } catch (SystemAssemblyException e) {
+                       return;
+               }
+               fail();
+       }
+
+       public void testCompositeRequiredInterfaceNotProvided() {
+               try {
+                       Component environment = new Environment();
+                       Component application = new Application();
+                       Container system = new Container(
+                                       "all",
+                                       new Component[] { environment, application },
+                                       new ProvidedInterface[0],
+                                       new RequiredInterface[] { new DefaultRequiredInterface(
+                                                       "string", String.class) });
+                       system.start("root");
                } catch (SystemAssemblyException e) {
                        return;
                }
@@ -67,27 +144,31 @@ public class SystemAssemblerTest extends TestCase {
        }
 
        public void testCompositeWithSuperfluousRequiredInfo() {
-               SubSystem environment = new Environment();
-               SubSystem application = new Application();
-               CompositeSystem system = new CompositeSystem("all", new SubSystem[] {
-                               environment, application }, new ServiceDescriptor[0],
-                               new ServiceDescriptor[] { new DefaultServiceDescriptor(
-                                               String.class) });
-               system.start("root", _registry, new Service[0]);
-               ServiceDescriptor[] required = system.getRequiredServices();
+               Component environment = new Environment();
+               Component application = new Application();
+               Container system = new Container(
+                               "all",
+                               new Component[] { environment, application },
+                               new ProvidedInterface[0],
+                               new RequiredInterface[] { new DefaultRequiredInterface(
+                                               "string", String.class) });
+               system.getRequiredServices()[0].setProvider(
+                               new DefaultProvidedInterface("hallo", String.class));
+               system.start("root");
+               RequiredInterface[] required = system.getRequiredServices();
                assertEquals(1, required.length);
-               ServiceDescriptor[] provided = system.getProvidedServices();
+               ProvidedInterface[] provided = system.getProvidedServices();
                assertEquals(0, provided.length);
        }
 
        public void testCompositeWithExternalDependencesNotProvided() {
                try {
-                       SubSystem environment = new Environment();
-                       SubSystem application = new Application();
-                       CompositeSystem system = new CompositeSystem("all",
-                                       new SubSystem[] { application }, new ServiceDescriptor[0],
+                       Component environment = new Environment();
+                       Component application = new Application();
+                       Container system = new Container("all",
+                                       new Component[] { application }, new ProvidedInterface[0],
                                        application.getRequiredServices());
-                       system.start("root", _registry, new Service[0]);
+                       system.start("root");
                } catch (SystemAssemblyException e) {
                        return;
                }
@@ -97,18 +178,50 @@ public class SystemAssemblerTest extends TestCase {
 
        public void testCompositeWithExternalDependencesProvided() {
 
-               SubSystem environment = new Environment();
-               SubSystem application = new Application();
-               CompositeSystem system = new CompositeSystem("all",
-                               new SubSystem[] { application }, new ServiceDescriptor[0],
+               Component environment = new Environment();
+               Component application = new Application();
+               Container system = new Container("all",
+                               new Component[] { application }, new ProvidedInterface[0],
                                application.getRequiredServices());
-               Service[] envServices = environment.start("env", _registry,new Service[0]);
-               system.start("root", _registry, envServices);
-               ServiceDescriptor[] required = system.getRequiredServices();
+               environment.start("env");
+               system.getRequiredServices()[0].setProvider(environment.getProvidedServices()[0]);
+               system.getRequiredServices()[1].setProvider(environment.getProvidedServices()[1]);
+               
+               system.start("root");
+               RequiredInterface[] required = system.getRequiredServices();
                assertEquals(2, required.length);
-               ServiceDescriptor[] provided = system.getProvidedServices();
+               ProvidedInterface[] provided = system.getProvidedServices();
                assertEquals(0, provided.length);
 
        }
 
+       public void testAmbiguousInterfaces() {
+               try {
+                       Component environment1 = new Environment();
+                       Component environment2 = new Environment();
+                       Component application = new Application();
+                       SystemAssembler assembler = new SystemAssembler(new Component[] {
+                                       environment1, environment2, application },
+                                       new ProvidedInterface[0]);
+                       assembler.start();
+
+               } catch (SystemAssemblyException e) {
+                       return;
+               }
+               fail();
+       }
+
+       public void testIncompleteRequirements() {
+               try {
+                       Component application = new Application();
+                       Container system = new Container("all",
+                                       new Component[] { application }, new ProvidedInterface[0],
+                                       new RequiredInterface[0]);
+                       system.start("root");
+               } catch (SystemAssemblyException e) {
+                       return;
+               }
+               fail();
+       }
+
 }