/* * ProActive Parallel Suite(TM): * The Open Source library for parallel and distributed * Workflows & Scheduling, Orchestration, Cloud Automation * and Big Data Analysis on Enterprise Grids & Clouds. * * Copyright (c) 2007 - 2017 ActiveEon * Contact: contact@activeeon.com * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation: version 3 of * the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * If needed, contact us to obtain a release under GPL Version 2 or 3 * or a different license than the AGPL. */ package functionaltests.runasme; import static org.junit.Assume.assumeNotNull; import static org.junit.Assume.assumeTrue; import java.io.File; import java.net.URL; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.objectweb.proactive.core.config.CentralPAPropertyRepository; import org.objectweb.proactive.utils.OperatingSystem; import org.ow2.proactive.resourcemanager.RMFactory; import org.ow2.proactive.resourcemanager.core.properties.PAResourceManagerProperties; import org.ow2.proactive.scheduler.common.Scheduler; import org.ow2.proactive.scheduler.common.job.JobId; import org.ow2.proactive.scheduler.common.job.factories.JobFactory; import org.ow2.proactive.scheduler.common.task.TaskResult; import org.ow2.proactive.scheduler.core.properties.PASchedulerProperties; import org.ow2.proactive.scheduler.task.utils.ForkerUtils; import functionaltests.dataspaces.TestCacheSpaceCleaning; import functionaltests.utils.RMTHelper; import functionaltests.utils.SchedulerTHelper; /** * Tests RunAsMe feature on windows * * @author ActiveEon Team * @since 05/01/2017 */ public class TestRunAsMeWindows extends TestRunAsMe { public static final String RUNASME_SHARED_DIR_PROPNAME = "runasme.shared.dir"; protected static String sharedDirectory; static URL jobDescriptor = TestCacheSpaceCleaning.class.getResource("/functionaltests/descriptors/Job_RunAsMe_Windows.xml"); @BeforeClass public static void startDedicatedScheduler() throws Exception { assumeTrue(OperatingSystem.getOperatingSystem() == OperatingSystem.windows); setupUser(); sharedDirectory = System.getProperty(RUNASME_SHARED_DIR_PROPNAME); assumeNotNull(sharedDirectory); RMFactory.setOsJavaProperty(); // start an empty scheduler and add a node source with modified properties schedulerHelper = new SchedulerTHelper(true, true); List<String> arguments = new ArrayList<>(); // change the proactive home directory to the shared directory, proactive libs are copied before the test to this folder // this ensures that the forked jvm will be able to access the proactive jars arguments.addAll(setProActiveHomeInJVMParametersList(RMTHelper.setup.getJvmParametersAsList())); arguments.add("-D" + ForkerUtils.FORK_METHOD_KEY + "=" + ForkerUtils.ForkMethod.PWD.toString()); arguments.add("-Djava.io.tmpdir=" + sharedDirectory); arguments.add("-Dpa.logs.home=" + sharedDirectory); schedulerHelper.createNodeSource("RunAsMeNS", 5, arguments); } private static List<String> setProActiveHomeInJVMParametersList(List<String> jvmParameters) { List<String> newJVMParameters = new ArrayList<>(jvmParameters.size()); for (String parameter : jvmParameters) { if (parameter.contains(CentralPAPropertyRepository.PA_HOME.getName())) { newJVMParameters.add(CentralPAPropertyRepository.PA_HOME.getCmdLine() + sharedDirectory); } else if (parameter.contains(PASchedulerProperties.SCHEDULER_HOME.getKey())) { newJVMParameters.add(PASchedulerProperties.SCHEDULER_HOME.getCmdLine() + sharedDirectory); } else if (parameter.contains(PAResourceManagerProperties.RM_HOME.getKey())) { newJVMParameters.add(PAResourceManagerProperties.RM_HOME.getCmdLine() + sharedDirectory); } else { newJVMParameters.add(parameter); } } return newJVMParameters; } @Test public void testRunAsMe() throws Exception { // connect to the scheduler using the runasme account Scheduler scheduler = schedulerHelper.getSchedulerInterface(username, password, null); JobId jobid = schedulerHelper.testJobSubmission(scheduler, JobFactory.getFactory() .createJob(new File(jobDescriptor.toURI()).getAbsolutePath()), false, true); for (Map.Entry<String, TaskResult> entry : scheduler.getJobResult(jobid).getAllResults().entrySet()) { if (entry.getKey().contains("RunAsMeTask")) { Assert.assertTrue("RunAsMe task should display in the logs the correct system user", entry.getValue().getOutput().getStdoutLogs().contains(username)); } } } }