Search in sources :

Example 46 with ClientInfo

use of com.cosylab.acs.maci.ClientInfo in project ACS by ACS-Community.

the class ClientInfoCommandComponentRemove method execute.

/**
	 * @see Command#execute(PrevalentSystem)
	 */
public Serializable execute(PrevalentSystem system) throws Exception {
    ClientInfo clientInfo = ((ManagerImpl) system).noSyncGetClientInfo(id);
    clientInfo.getComponents().remove(handle);
    return null;
}
Also used : ManagerImpl(com.cosylab.acs.maci.manager.ManagerImpl) ClientInfo(com.cosylab.acs.maci.ClientInfo)

Example 47 with ClientInfo

use of com.cosylab.acs.maci.ClientInfo in project ACS by ACS-Community.

the class ManagerImpl method getAdministrators.

/**
	 * Returns array of currently logged administrators.
	 * @param	excludeHandle	handle of administrator not to be included in the array, can be 0.
	 * @return	ClientInfo[]	array of currently logged administrators
	 */
private ClientInfo[] getAdministrators(int excludeHandle) {
    // array of administrators to be notified
    ClientInfo[] admins = null;
    // generate array of Administrators to be notified
    synchronized (administrators) {
        int len = administrators.size();
        // no administrator to notify
        if (len > 0) {
            ArrayList<ClientInfo> list = new ArrayList<ClientInfo>();
            int h = administrators.first();
            while (h != 0) {
                ClientInfo adminInfo = (ClientInfo) administrators.get(h);
                // do not notify administrator itself
                if (adminInfo.getHandle() != excludeHandle)
                    list.add(adminInfo);
                h = administrators.next(h);
            }
            // copy to array
            if (list.size() > 0) {
                admins = new ClientInfo[list.size()];
                list.toArray(admins);
            }
        }
    }
    return admins;
}
Also used : ArrayList(java.util.ArrayList) ClientInfo(com.cosylab.acs.maci.ClientInfo)

Example 48 with ClientInfo

use of com.cosylab.acs.maci.ClientInfo in project ACS by ACS-Community.

the class ManagerImplTest method testGetDynamicComponent.

/**
	 * Test getDynamicComponent.
	 */
public void testGetDynamicComponent() {
    try {
        try {
            manager.getDynamicComponent(0, null, false);
            fail();
        } catch (AcsJInvalidComponentSpecEx bpe) {
            System.out.println("This is OK: " + bpe.toString());
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx " + e.toString());
        }
        final ComponentSpec allAsterixCompSpec = new ComponentSpec(ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY);
        try {
            manager.getDynamicComponent(Integer.MAX_VALUE, allAsterixCompSpec, true);
            fail();
        } catch (AcsJNoPermissionEx npe) {
            System.out.println("This is OK: " + npe.toString());
        } catch (AcsJInvalidComponentSpecEx bpe) {
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        try {
            manager.getDynamicComponent(dummyHandle, allAsterixCompSpec, false);
            fail();
        } catch (AcsJNoPermissionEx npe) {
            System.out.println("This is OK: " + npe.toString());
        } catch (AcsJInvalidComponentSpecEx bpe) {
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        TestClient client = new TestClient(clientName);
        ClientInfo info = manager.login(client);
        assertTrue(info.getHandle() != 0);
        try {
            manager.getDynamicComponent(info.getHandle(), null, true);
            fail();
        } catch (AcsJInvalidComponentSpecEx bpe) {
            System.out.println("This is OK: " + bpe.toString());
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec(null, null, null, null), false);
            fail();
        } catch (AcsJInvalidComponentSpecEx ndce) {
            System.out.println("This is OK: " + ndce.toString());
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        try {
            manager.getDynamicComponent(info.getHandle(), allAsterixCompSpec, false);
            fail();
        } catch (AcsJInvalidComponentSpecEx bpe) {
            System.out.println("This is OK: " + bpe.toString());
        } catch (AcsJIncompleteComponentSpecEx icse) {
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        final ComponentSpec nameTypeIncomplete = new ComponentSpec(ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY, "PowerSupply", "IDL:acsexmpl/PS/PowerSupply:1.0");
        try {
            manager.getDynamicComponent(info.getHandle(), nameTypeIncomplete, false);
            fail();
        } catch (AcsJInvalidComponentSpecEx icse) {
            System.out.println("This is OK: " + icse.toString());
        } catch (AcsJIncompleteComponentSpecEx bpe) {
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        // decoy container
        TestContainer container = new TestContainer("Container");
        Map supportedComponents = new HashMap();
        TestComponent mount1COB = new TestComponent("MOUNT1");
        supportedComponents.put("MOUNT1", mount1COB);
        container.setSupportedComponents(supportedComponents);
        /*ClientInfo containerInfo =*/
        manager.login(container);
        TestContainer dynContainer = new TestDynamicContainer("DynContainer");
        ClientInfo dynContainerInfo = manager.login(dynContainer);
        // wait containers to startup
        try {
            Thread.sleep(STARTUP_COBS_SLEEP_TIME_MS);
        } catch (InterruptedException ie) {
        }
        // Before ACS 6.0 this was expecting a null, now we get and exception
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("dynComponent", "java.lang.Object", "java.lang.Object", "invalidContainer"), true);
            fail();
        } catch (AcsJCannotGetComponentEx ex) {
            System.out.println("This is OK: " + ex.toString());
        } catch (AcsJInvalidComponentSpecEx ex) {
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        // all dynamic case
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("dynComponent", "java.lang.Object", "java.lang.Object", "DynContainer"), true);
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("dynComponent"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
        } catch (Exception ex) {
            ex.printStackTrace();
            fail();
        }
        ClientInfo info2 = manager.login(new TestClient("TestClient2"));
        // obtain and release dynamic component in a normal way
        try {
            URI dynURI = new URI("dynComponent");
            // obtain
            StatusHolder status = new StatusHolder();
            Component component = manager.getComponent(info2.getHandle(), dynURI, true, status);
            assertNotNull(component);
            assertEquals(ComponentStatus.COMPONENT_ACTIVATED, status.getStatus());
            // release
            int owners = manager.releaseComponent(info2.getHandle(), dynURI);
            assertEquals(1, owners);
        } catch (Exception ex) {
            fail();
        }
        // override container case
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("MOUNT2", ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY, "DynContainer"), true);
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("MOUNT2"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
        } catch (Exception ex) {
            fail();
        }
        // override all other fields case but MOUNT2 is already activated
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec("MOUNT2", "java.lang.Object", "java.lang.Object", "DynContainer"), true);
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx ciwace) {
            System.out.println("This is OK: " + ciwace.toString());
        } catch (AcsJInvalidComponentSpecEx bpe) {
            fail();
        }
        // ordinary activation case but MOUNT2 is already activated
        URI mount2 = null;
        try {
            mount2 = CURLHelper.createURI("MOUNT2");
            StatusHolder status = new StatusHolder();
            Component component = manager.getComponent(info.getHandle(), mount2, true, status);
            assertNotNull(null, component);
            assertEquals(ComponentStatus.COMPONENT_ACTIVATED, status.getStatus());
        } catch (Exception ex) {
            fail();
        }
        // default component test, should be overriden MOUNT2
        try {
            ComponentInfo componentInfo = manager.getDefaultComponent(info.getHandle(), "IDL:alma/MOUNT_ACS/Mount:1.0");
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("MOUNT2"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
        } catch (Exception ex) {
            fail();
        }
        // release mount2
        try {
            manager.releaseComponent(info.getHandle(), mount2);
        } catch (AcsJBadParameterEx e) {
            fail();
        }
        // default component test, should still be overriden MOUNT2
        try {
            ComponentInfo componentInfo = manager.getDefaultComponent(info.getHandle(), "IDL:alma/MOUNT_ACS/Mount:1.0");
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("MOUNT2"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
        } catch (Exception ex) {
            fail();
        }
        // release mount2
        try {
            manager.releaseComponent(info.getHandle(), mount2);
        } catch (AcsJBadParameterEx e) {
            fail();
        }
        // type override
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec("MOUNT1", ComponentSpec.COMPSPEC_ANY, "java.lang.Object", ComponentSpec.COMPSPEC_ANY), true);
            fail();
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx ciwace) {
            System.out.println("This is OK: " + ciwace.toString());
        } catch (AcsJInvalidComponentSpecEx ciwace) {
            fail();
        }
        // * name generation test w/o CDB lookup
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec(ComponentSpec.COMPSPEC_ANY, "IDL:alma/PS/PowerSupply:1.0", "java.lang.Object", "DynContainer"), false);
            assertTrue(componentInfo != null);
            //assertTrue(componentInfo.getName().startsWith("IDL:alma/PS/PowerSupply:1.0"));
            assertTrue(componentInfo.getName().startsWith("IDL:alma_PS_PowerSupply:1.0"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
            manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        } catch (Exception ex) {
            fail();
        }
        // prefix* name generation test w/o CDB lookup
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("PREFIX" + ComponentSpec.COMPSPEC_ANY, "IDL:alma/PS/PowerSupply:1.0", "java.lang.Object", "DynContainer"), false);
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().startsWith("PREFIX"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
            manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        } catch (Exception ex) {
            fail();
        }
        // * name generation test w/o CDB lookup, * container -> should fail since there is no load balancing
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec(ComponentSpec.COMPSPEC_ANY, "IDL:alma/newDevice/newPowerSupply:1.0", "java.lang.Object", ComponentSpec.COMPSPEC_ANY), false);
            fail();
        } catch (AcsJInvalidComponentSpecEx icsex) {
            System.out.println("This is OK: " + icsex.toString());
        } catch (Exception ex) {
            fail();
        }
        // (*, type) and name generation test w/ container override
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec(ComponentSpec.COMPSPEC_ANY, "IDL:alma/PS/PowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, "DynContainer"), true);
            assertTrue(componentInfo != null);
            //assertTrue(componentInfo.getName().startsWith("IDL:alma/PS/PowerSupply:1.0"));
            assertTrue(componentInfo.getName().startsWith("IDL:alma_PS_PowerSupply:1.0"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
            manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        } catch (Exception ex) {
            fail();
        }
        // (name, type) - component with given name, name is exist in CDB; w/ container override
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("PBEND_B_02", "IDL:alma/PS/PowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, "DynContainer"), true);
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("PBEND_B_02"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
            manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        } catch (Exception ex) {
            fail();
        }
        // (name, type) - component with given name, name does not exist in CDB; w/ container override
        try {
            ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("NAME_OVERRIDE", "IDL:alma/PS/PowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, "DynContainer"), true);
            assertTrue(componentInfo != null);
            assertTrue(componentInfo.getName().equals("NAME_OVERRIDE"));
            assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
            manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        } catch (Exception ex) {
            fail();
        }
        // (name, type) - but type does not exist in CDB (there is not type override)
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec("NAME_OVERRIDE", "IDL:alma/PS/RampedPowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY), true);
            fail();
        } catch (AcsJInvalidComponentSpecEx icse) {
            System.out.println("This is OK: " + icse.toString());
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        // (*, type) - but type does not exist in CDB (there is not type override)
        try {
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec(ComponentSpec.COMPSPEC_ANY, "IDL:alma/PS/RampedPowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, ComponentSpec.COMPSPEC_ANY), true);
            fail();
        } catch (AcsJInvalidComponentSpecEx icse) {
            System.out.println("This is OK: " + icse.toString());
        } catch (AcsJComponentSpecIncompatibleWithActiveComponentEx e) {
            fail("AcsJComponentSpecIncompatibleWithActiveComponentEx");
        }
        // activate_component_async that does not respond test
        dynContainer.setIgnoreActivateComponentAsync(true);
        // activate_component_async that does not respond test
        // timeout test
        manager.setLockTimeout(3 * SLEEP_TIME_MS);
        try {
            dynContainer.setIgnoreActivateComponentAsync(true);
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec("activate_component_async_will_never_respond", "IDL:alma/PS/PowerSupply:1.0", "java.lang.Object", "DynContainer"), false);
            fail();
        } catch (AcsJCannotGetComponentEx cgc) {
        // ok
        } catch (Exception ex) {
            fail();
        }
        final AtomicLong logoutTime = new AtomicLong();
        // and container logs out
        // shoud react quicker
        manager.setLockTimeout(10 * SLEEP_TIME_MS);
        try {
            final ClientInfo dci = dynContainerInfo;
            new Thread(new Runnable() {

                @Override
                public void run() {
                    try {
                        Thread.sleep(SLEEP_TIME_MS);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    logoutTime.set(System.currentTimeMillis());
                    try {
                        manager.logout(dci.getHandle());
                    } catch (AcsJNoPermissionEx e) {
                        fail();
                    }
                }
            }).start();
            manager.getDynamicComponent(info.getHandle(), new ComponentSpec("activate_component_async_will_never_respond_cont_logout", "IDL:alma/PS/PowerSupply:1.0", "java.lang.Object", "DynContainer"), false);
            fail();
        } catch (AcsJCannotGetComponentEx cgc) {
            long now = System.currentTimeMillis();
            long diff = now - logoutTime.get();
            // logout did not trigger component failed to activate
            assertTrue(diff < SLEEP_TIME_MS);
        } catch (Exception ex) {
            fail();
        }
        try {
            Thread.sleep(SLEEP_TIME_MS);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    /**
			 * @todo I would like to remove all these exceptions 
		     *       and catch them above
			 */
    } catch (AcsJCannotGetComponentEx e) {
        fail("AcsJCannotGetComponentEx");
    } catch (AcsJIncompleteComponentSpecEx e) {
        fail("AcsJIncompleteComponentSpecEx");
    }
}
Also used : AcsJBadParameterEx(alma.ACSErrTypeCommon.wrappers.AcsJBadParameterEx) HashMap(java.util.HashMap) AcsJComponentSpecIncompatibleWithActiveComponentEx(alma.maciErrType.wrappers.AcsJComponentSpecIncompatibleWithActiveComponentEx) ComponentSpec(com.cosylab.acs.maci.ComponentSpec) URI(java.net.URI) AcsJCannotGetComponentEx(alma.maciErrType.wrappers.AcsJCannotGetComponentEx) RemoteException(com.cosylab.acs.maci.RemoteException) URISyntaxException(java.net.URISyntaxException) BadParametersException(com.cosylab.acs.maci.BadParametersException) NoResourcesException(com.cosylab.acs.maci.NoResourcesException) NoDefaultComponentException(com.cosylab.acs.maci.NoDefaultComponentException) AcsJIncompleteComponentSpecEx(alma.maciErrType.wrappers.AcsJIncompleteComponentSpecEx) StatusHolder(com.cosylab.acs.maci.StatusHolder) AcsJInvalidComponentSpecEx(alma.maciErrType.wrappers.AcsJInvalidComponentSpecEx) AtomicLong(java.util.concurrent.atomic.AtomicLong) AcsJNoPermissionEx(alma.maciErrType.wrappers.AcsJNoPermissionEx) ClientInfo(com.cosylab.acs.maci.ClientInfo) ComponentInfo(com.cosylab.acs.maci.ComponentInfo) Component(com.cosylab.acs.maci.Component) HashMap(java.util.HashMap) Map(java.util.Map)

Example 49 with ClientInfo

use of com.cosylab.acs.maci.ClientInfo in project ACS by ACS-Community.

the class ManagerImplTest method testMakeComponentMortal.

public void testMakeComponentMortal() {
    try {
        manager.makeComponentImmortal(0, null, false);
        fail();
    } catch (AcsJBadParameterEx bpe) {
        System.out.println("This is OK");
    } catch (AcsJCannotGetComponentEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    }
    try {
        manager.makeComponentImmortal(Integer.MAX_VALUE, null, false);
        fail();
    } catch (AcsJBadParameterEx bpe) {
        System.out.println("This is OK");
    } catch (AcsJCannotGetComponentEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    }
    try {
        manager.makeComponentImmortal(dummyHandle, dummyURI, false);
        fail();
    } catch (AcsJCannotGetComponentEx bpe) {
        fail("CannotGetComponentE");
    } catch (AcsJBadParameterEx bpe) {
        fail("BadParameter");
    } catch (AcsJNoPermissionEx bpe) {
        System.out.println("This is OK");
    }
    ClientInfo adminInfo = null;
    ClientInfo info = null;
    Component mount2 = null;
    Component mount3 = null;
    try {
        TestAdministrator adminClient = new TestAdministrator(administratorName);
        adminInfo = manager.login(adminClient);
        TestClient client = new TestClient(clientName);
        info = manager.login(client);
        assertTrue(info.getHandle() != 0);
        TestContainer container = new TestContainer("Container");
        Map supportedComponents = new HashMap();
        Component mount1 = new TestComponent("MOUNT1");
        supportedComponents.put("MOUNT1", mount1);
        mount2 = new TestComponent("MOUNT2");
        supportedComponents.put("MOUNT2", mount2);
        mount3 = new TestComponent("MOUNT3");
        supportedComponents.put("MOUNT3", mount3);
        container.setSupportedComponents(supportedComponents);
        ClientInfo containerInfo = manager.login(container);
    } catch (AcsJNoPermissionEx e1) {
        fail("No permission");
    }
    URI mount2URL = null;
    try {
        mount2URL = new URI("MOUNT2");
        StatusHolder status = new StatusHolder();
        Component ref = manager.getComponent(info.getHandle(), mount2URL, true, status);
        assertEquals(mount2, ref);
    } catch (Exception ex) {
        fail();
    }
    // admin will activate it
    URI mount3URL = null;
    try {
        mount3URL = new URI("MOUNT3");
        StatusHolder status = new StatusHolder();
        Component ref = manager.getComponent(adminInfo.getHandle(), mount3URL, true, status);
        assertEquals(mount3, ref);
    } catch (Exception ex) {
        fail();
    }
    try {
        Thread.sleep(STARTUP_COBS_SLEEP_TIME_MS);
    } catch (InterruptedException ie) {
    }
    // test activated Components
    ComponentInfo[] infos;
    try {
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(3, infos.length);
    } catch (AcsJNoPermissionEx e1) {
        fail("No permission");
    }
    // make mount2 immortal (as admin which has all the rights)
    try {
        manager.makeComponentImmortal(adminInfo.getHandle(), mount2URL, true);
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "MOUNT2", "*", true);
        assertEquals(1, infos.length);
        assertTrue(infos[0].getClients().contains(manager.getHandle()));
        manager.makeComponentImmortal(adminInfo.getHandle(), mount2URL, false);
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "MOUNT2", "*", true);
        assertEquals(1, infos.length);
        assertTrue(!infos[0].getClients().contains(manager.getHandle()));
    } catch (AcsJCannotGetComponentEx e) {
        fail();
    } catch (AcsJBadParameterEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx bpe) {
        fail();
    }
    // client does not own it, no permission exception expected
    try {
        manager.makeComponentImmortal(info.getHandle(), mount3URL, true);
        fail();
    } catch (AcsJCannotGetComponentEx npe) {
        fail();
    } catch (AcsJBadParameterEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx bpe) {
        System.out.println("This is OK: " + bpe.toString());
    }
    // normal op.
    try {
        manager.makeComponentImmortal(info.getHandle(), mount2URL, true);
    } catch (AcsJCannotGetComponentEx e) {
        fail();
    } catch (AcsJBadParameterEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx bpe) {
        fail();
    }
    try {
        manager.releaseComponent(info.getHandle(), mount2URL);
    } catch (AcsJBadParameterEx bpe) {
        fail();
    } catch (AcsJNoPermissionEx bpe) {
        fail();
    }
    try {
        // mount2 is immortal and stays active, has managers handle as an owner
        infos = manager.getComponentInfo(adminInfo.getHandle(), new int[0], "MOUNT2", "*", true);
        assertEquals(1, infos.length);
        assertTrue(infos[0].getClients().contains(manager.getHandle()));
        // mount2 should be released now
        try {
            manager.makeComponentImmortal(adminInfo.getHandle(), mount2URL, false);
        } catch (AcsJCannotGetComponentEx e) {
            fail();
        } catch (AcsJBadParameterEx bpe) {
            fail();
        }
        infos = manager.getComponentInfo(adminInfo.getHandle(), new int[0], "MOUNT2", "*", true);
        assertEquals(0, infos.length);
    } catch (AcsJNoPermissionEx e) {
        fail();
    }
}
Also used : AcsJBadParameterEx(alma.ACSErrTypeCommon.wrappers.AcsJBadParameterEx) HashMap(java.util.HashMap) URI(java.net.URI) AcsJCannotGetComponentEx(alma.maciErrType.wrappers.AcsJCannotGetComponentEx) RemoteException(com.cosylab.acs.maci.RemoteException) URISyntaxException(java.net.URISyntaxException) BadParametersException(com.cosylab.acs.maci.BadParametersException) NoResourcesException(com.cosylab.acs.maci.NoResourcesException) NoDefaultComponentException(com.cosylab.acs.maci.NoDefaultComponentException) StatusHolder(com.cosylab.acs.maci.StatusHolder) AcsJNoPermissionEx(alma.maciErrType.wrappers.AcsJNoPermissionEx) ClientInfo(com.cosylab.acs.maci.ClientInfo) ComponentInfo(com.cosylab.acs.maci.ComponentInfo) Component(com.cosylab.acs.maci.Component) HashMap(java.util.HashMap) Map(java.util.Map)

Example 50 with ClientInfo

use of com.cosylab.acs.maci.ClientInfo in project ACS by ACS-Community.

the class ManagerImplTest method testComponentKeepAliveTime.

public void testComponentKeepAliveTime() {
    TestClient client = new TestClient(clientName);
    ClientInfo info = null;
    try {
        info = manager.login(client);
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    }
    assertTrue(info.getHandle() != 0);
    TestContainer container = new TestContainer("Container");
    Map supportedComponents = new HashMap();
    Component immortal = new TestComponent("IMMORTAL");
    supportedComponents.put("IMMORTAL", immortal);
    Component persistent = new TestComponent("PERSISTENT");
    supportedComponents.put("PERSISTENT", persistent);
    container.setSupportedComponents(supportedComponents);
    try {
        ClientInfo containerInfo = manager.login(container);
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    }
    URI immortalURL = null;
    try {
        immortalURL = new URI("IMMORTAL");
        StatusHolder status = new StatusHolder();
        Component ref = manager.getComponent(info.getHandle(), immortalURL, true, status);
        assertEquals(immortal, ref);
    } catch (Exception ex) {
        fail();
    }
    URI persistentURL = null;
    try {
        persistentURL = new URI("PERSISTENT");
        StatusHolder status = new StatusHolder();
        Component ref = manager.getComponent(info.getHandle(), persistentURL, true, status);
        assertEquals(persistent, ref);
    } catch (Exception ex) {
        fail();
    }
    try {
        // test activated Components
        ComponentInfo[] infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        // IMMORTAL has to have manager as a client
        for (ComponentInfo cInfo : infos) {
            if (cInfo.getName().equals("IMMORTAL")) {
                assertTrue(cInfo.getClients().contains(manager.getHandle()));
            } else {
                assertTrue(!cInfo.getClients().contains(manager.getHandle()));
            }
        }
        // check immortality
        try {
            manager.releaseComponent(info.getHandle(), immortalURL);
        } catch (AcsJBadParameterEx e) {
            fail();
        }
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        for (ComponentInfo cInfo : infos) {
            if (cInfo.getName().equals("IMMORTAL")) {
                assertTrue(cInfo.getClients().contains(manager.getHandle()));
            }
        }
        final int KEEP_ALIVE_TIME = 5000 + 2000;
        // check keepAliveTime
        try {
            manager.releaseComponent(info.getHandle(), persistentURL);
        } catch (AcsJBadParameterEx e) {
            fail();
        }
        // both alive
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        // another request for component
        try {
            persistentURL = new URI("PERSISTENT");
            StatusHolder status = new StatusHolder();
            Component ref = manager.getComponent(info.getHandle(), persistentURL, true, status);
            assertEquals(persistent, ref);
        } catch (Exception ex) {
            fail();
        }
        // sleep
        try {
            Thread.sleep(KEEP_ALIVE_TIME);
        } catch (InterruptedException ie) {
        }
        // still both should be activated
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        try {
            manager.releaseComponent(info.getHandle(), persistentURL);
        } catch (AcsJBadParameterEx e) {
            fail();
        }
        // both alive
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        // sleep
        try {
            Thread.sleep(KEEP_ALIVE_TIME);
        } catch (InterruptedException ie) {
        }
        // only IMMORTAL should be alive
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(1, infos.length);
        assertEquals(immortal, infos[0].getComponent());
    } catch (AcsJNoPermissionEx e) {
        fail("No permission");
    }
    // keep alive time of dynamic component
    try {
        TestContainer dynContainer = new TestDynamicContainer("DynContainer");
        ClientInfo dynContainerInfo = manager.login(dynContainer);
        // wait container to startup
        try {
            Thread.sleep(STARTUP_COBS_SLEEP_TIME_MS);
        } catch (InterruptedException ie) {
        }
        ComponentInfo componentInfo = manager.getDynamicComponent(info.getHandle(), new ComponentSpec("DELAYED*", "IDL:alma/PS/PowerSupply:1.0", ComponentSpec.COMPSPEC_ANY, "DynContainer"), true);
        assertTrue(componentInfo != null);
        assertTrue(componentInfo.getName().startsWith("DELAYED"));
        assertEquals(dynContainerInfo.getHandle(), componentInfo.getContainer());
        // now we release the component
        manager.releaseComponent(info.getHandle(), CURLHelper.createURI(componentInfo.getName()));
        // both alive
        ComponentInfo[] infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(2, infos.length);
        // sleep
        final int KEEP_ALIVE_TIME = 5000 + 2000;
        try {
            Thread.sleep(KEEP_ALIVE_TIME);
        } catch (InterruptedException ie) {
        }
        // only IMMORTAL should be alive
        infos = manager.getComponentInfo(info.getHandle(), new int[0], "*", "*", true);
        assertEquals(1, infos.length);
        assertEquals(immortal, infos[0].getComponent());
    } catch (Exception ex) {
        ex.printStackTrace();
        fail();
    }
}
Also used : AcsJBadParameterEx(alma.ACSErrTypeCommon.wrappers.AcsJBadParameterEx) HashMap(java.util.HashMap) ComponentSpec(com.cosylab.acs.maci.ComponentSpec) URI(java.net.URI) RemoteException(com.cosylab.acs.maci.RemoteException) URISyntaxException(java.net.URISyntaxException) BadParametersException(com.cosylab.acs.maci.BadParametersException) NoResourcesException(com.cosylab.acs.maci.NoResourcesException) NoDefaultComponentException(com.cosylab.acs.maci.NoDefaultComponentException) StatusHolder(com.cosylab.acs.maci.StatusHolder) AcsJNoPermissionEx(alma.maciErrType.wrappers.AcsJNoPermissionEx) ClientInfo(com.cosylab.acs.maci.ClientInfo) ComponentInfo(com.cosylab.acs.maci.ComponentInfo) Component(com.cosylab.acs.maci.Component) HashMap(java.util.HashMap) Map(java.util.Map)

Aggregations

ClientInfo (com.cosylab.acs.maci.ClientInfo)56 AcsJNoPermissionEx (alma.maciErrType.wrappers.AcsJNoPermissionEx)39 BadParametersException (com.cosylab.acs.maci.BadParametersException)23 ComponentInfo (com.cosylab.acs.maci.ComponentInfo)23 NoResourcesException (com.cosylab.acs.maci.NoResourcesException)21 HashMap (java.util.HashMap)21 Map (java.util.Map)21 Component (com.cosylab.acs.maci.Component)18 RemoteException (com.cosylab.acs.maci.RemoteException)18 URI (java.net.URI)18 NoDefaultComponentException (com.cosylab.acs.maci.NoDefaultComponentException)17 URISyntaxException (java.net.URISyntaxException)17 StatusHolder (com.cosylab.acs.maci.StatusHolder)16 AcsJBadParameterEx (alma.ACSErrTypeCommon.wrappers.AcsJBadParameterEx)8 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)8 AcsJCannotGetComponentEx (alma.maciErrType.wrappers.AcsJCannotGetComponentEx)7 ContainerInfo (com.cosylab.acs.maci.ContainerInfo)7 ArrayList (java.util.ArrayList)7 Client (com.cosylab.acs.maci.Client)6 Administrator (com.cosylab.acs.maci.Administrator)5