/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.airavata.integration; import org.apache.airavata.integration.tools.DocumentCreatorNew; import org.apache.airavata.model.application.io.DataType; import org.apache.airavata.model.application.io.InputDataObjectType; import org.apache.airavata.model.application.io.OutputDataObjectType; import org.apache.airavata.model.experiment.ExperimentModel; import org.apache.airavata.model.experiment.UserConfigurationDataModel; import org.apache.airavata.model.scheduling.ComputationalResourceSchedulingModel; import org.apache.airavata.model.security.AuthzToken; import org.apache.airavata.model.util.ExperimentModelUtil; import org.apache.airavata.model.util.ProjectModelUtil; import org.apache.airavata.model.workspace.Project; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; import java.util.ArrayList; import java.util.List; public class SimpleEchoIT extends SingleAppIntegrationTestBase { private final static Logger log = LoggerFactory.getLogger(SimpleEchoIT.class); private AuthzToken authzToken; public SimpleEchoIT() { //super(); } @BeforeTest public void setUp() throws Exception { // Thread.sleep(20000); init(); authzToken = new AuthzToken("empty token"); } @Test public void testSimpleLocalhostEchoService() throws Exception { log.info("Running job in localhost"); log.info("========================"); log.info("Adding applications..."); DocumentCreatorNew documentCreatorNew = new DocumentCreatorNew(getClient()); String hostAndappId = documentCreatorNew.createLocalHostDocs(); String appId = hostAndappId.split(",")[1]; String hostId = hostAndappId.split(",")[0]; List<InputDataObjectType> exInputs = new ArrayList<InputDataObjectType>(); InputDataObjectType input = new InputDataObjectType(); input.setName("echo_input"); input.setType(DataType.STRING); input.setValue("echo_output=Hello World"); exInputs.add(input); List<OutputDataObjectType> exOut = new ArrayList<OutputDataObjectType>(); OutputDataObjectType output = new OutputDataObjectType(); output.setName("echo_output"); output.setType(DataType.STRING); output.setValue(""); exOut.add(output); Project project = ProjectModelUtil.createProject("project1", "admin", "test project"); String projectId = getClient().createProject(authzToken, "php_reference_gateway", project); ExperimentModel simpleExperiment = ExperimentModelUtil.createSimpleExperiment("php_reference_gateway", projectId, "admin", "echoExperiment", appId, appId, exInputs); simpleExperiment.setExperimentOutputs(exOut); ComputationalResourceSchedulingModel scheduling = ExperimentModelUtil.createComputationResourceScheduling(hostId, 1, 1, 1, "normal", 1, 0); scheduling.setResourceHostId(hostId); UserConfigurationDataModel userConfigurationData = new UserConfigurationDataModel(); userConfigurationData.setAiravataAutoSchedule(false); userConfigurationData.setOverrideManualScheduledParams(false); userConfigurationData.setComputationalResourceScheduling(scheduling); simpleExperiment.setUserConfigurationData(userConfigurationData); log.info("Creating experiment..."); final String expId = createExperiment(simpleExperiment); log.info("Experiment Id returned : " + expId); launchExperiment(expId); log.info("Experiment launched successfully\n"); log.info("Monitoring job in localhost"); log.info("==========================="); monitorJob(expId); } }