/* * JBoss, Home of Professional Open Source * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. * See the copyright.txt in the distribution for a full listing * of individual contributors. * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU Lesser General Public License, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * * (C) 2005-2006, * @author JBoss Inc. */ /* * Copyright (C) 2001, 2002, * * Hewlett-Packard Arjuna Labs, * Newcastle upon Tyne, * Tyne and Wear, * UK. * * $Id: DistributedHammer2.java 2342 2006-03-30 13:06:17Z $ */ package com.hp.mwtests.ts.jts.remote.hammer; import com.hp.mwtests.ts.jts.utils.TaskMonitor; import com.hp.mwtests.ts.jts.utils.TaskProgress; import org.omg.CORBA.IntHolder; import com.hp.mwtests.ts.jts.utils.ServerORB; import com.arjuna.orbportability.ORB; import com.arjuna.orbportability.RootOA; import com.arjuna.orbportability.Services; import com.hp.mwtests.ts.jts.TestModule.HammerHelper; import com.hp.mwtests.ts.jts.orbspecific.resources.DHThreadObject2; import com.hp.mwtests.ts.jts.orbspecific.resources.DistributedHammerWorker2; import com.hp.mwtests.ts.jts.resources.TestUtility; public class DistributedHammer2 { private final static int START_VALUE_1 = 10; private final static int START_VALUE_2 = 101; private final static int EXPECTED_RESULT = START_VALUE_1 + START_VALUE_2; public static void main(String[] args) throws Exception { ServerORB orb = new ServerORB(); ORB myORB = orb.getORB(); RootOA myOA = orb.getOA(); String server1 = args[0]; String server2 = args[1]; try { Services serv = new Services(myORB); DistributedHammerWorker2.hammerObject_1 = HammerHelper.narrow(myORB.orb().string_to_object(TestUtility.getService(server1))); DistributedHammerWorker2.hammerObject_2 = HammerHelper.narrow(myORB.orb().string_to_object(TestUtility.getService(server2))); TestUtility.assertTrue( DistributedHammerWorker2.hammerObject_1.set(START_VALUE_1, null) ); TestUtility.assertTrue( DistributedHammerWorker2.hammerObject_2.set(START_VALUE_2, null) ); DistributedHammerWorker2.get12('m', 0); DistributedHammerWorker2.get21('m', 0); } catch (Exception e) { TestUtility.fail("DistributedHammer2: "+e); e.printStackTrace(System.err); } TaskProgress progress1 = TaskMonitor.INSTANCE.monitorProgress("DistributedHammer2", "DistributedHammer2", 60000L); TaskProgress progress2 = TaskMonitor.INSTANCE.monitorProgress("DistributedHammer2", "DistributedHammer2", 60000L); DHThreadObject2 thr1 = new DHThreadObject2(progress1, '1'); DHThreadObject2 thr2 = new DHThreadObject2(progress2, '2'); thr1.start(); thr2.start(); try { thr1.join(); thr2.join(); } catch (InterruptedException e) { TestUtility.fail("DistributedHammer2: "+e); e.printStackTrace(System.err); } DistributedHammerWorker2.get12('m', 0); DistributedHammerWorker2.get21('m', 0); IntHolder value1 = new IntHolder(0); IntHolder value2 = new IntHolder(0); boolean assert1 = DistributedHammerWorker2.get1(value1) | DistributedHammerWorker2.get2(value2); boolean assert2 = EXPECTED_RESULT == (value1.value + value2.value); TestUtility.assertTrue( DistributedHammerWorker2.get1(value1) | DistributedHammerWorker2.get2(value2) ); TestUtility.assertEquals(EXPECTED_RESULT, (value1.value + value2.value) ); myOA.destroy(); myORB.shutdown(); int res = assert1 && assert2 && progress1.isFinished() && progress2.isFinished() ? 0 : 1; System.out.printf("%s%n", (res == 0 ? "Passed" : "Failed")); System.exit(res); } }