blob: a411b44cd312963fd6dc9af3b6b55f00a2210654 [file] [log] [blame]
/*
* 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.oodt.cas.workflow.system;
import org.apache.commons.io.FileUtils;
import org.apache.oodt.cas.metadata.Metadata;
import org.apache.oodt.cas.workflow.util.AvroTypeFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URL;
import java.util.List;
import java.util.Vector;
import java.util.logging.Level;
import java.util.logging.Logger;
public class TestAvroRpcWorkflowManager {
private static final int WM_PORT = 65527;
private AvroRpcWorkflowManager wmgr;
private String luceneCatLoc;
private static final Logger LOG = Logger
.getLogger(TestXmlRpcWorkflowManager.class.getName());
@Test
public void testGetWorkflowInstances() {
Vector workflowInsts = null;
try {
List list = AvroTypeFactory.getWorkflowInstances(wmgr.getWorkflowInstances());
workflowInsts = new Vector();
for (Object o : list) {
workflowInsts.add(o);
}
} catch (Exception e) {
e.printStackTrace();
}
assertNotNull(workflowInsts);
assertEquals(1, workflowInsts.size());
}
@Before
public void setUp() throws Exception {
startAvroRpcWorkflowManager();
startWorkflow();
}
@After
public void tearDown() throws Exception {
wmgr.shutdown();
}
private void startWorkflow() {
try (WorkflowManagerClient client =
new AvroRpcWorkflowManagerClient(new URL("http://localhost:" + WM_PORT))) {
client.sendEvent("long", new Metadata());
} catch (Exception e) {
fail(e.getMessage());
}
}
private void startAvroRpcWorkflowManager() {
URL ulr = TestAvroRpcWorkflowManager.class.getResource("/workflow.properties");
System.setProperty("java.util.logging.config.file", new File(
"./src/main/resources/logging.properties").getAbsolutePath());
try {
FileInputStream fileInputStream = new FileInputStream(ulr.getPath());
System.getProperties().load(
fileInputStream);
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
}
try {
luceneCatLoc = File.createTempFile("blah", "txt").getParentFile()
.getCanonicalPath();
luceneCatLoc = !luceneCatLoc.endsWith("/") ? luceneCatLoc + "/"
: luceneCatLoc;
luceneCatLoc += "repo";
LOG.log(Level.INFO, "Lucene instance repository: [" + luceneCatLoc + "]");
} catch (Exception e) {
fail(e.getMessage());
}
if (new File(luceneCatLoc).exists()) {
// blow away lucene cat
LOG.log(Level.INFO, "Removing workflow instance repository: ["
+ luceneCatLoc + "]");
try {
FileUtils.deleteDirectory(new File(luceneCatLoc));
} catch (IOException e) {
fail(e.getMessage());
}
}
System.setProperty("workflow.engine.instanceRep.factory",
"org.apache.oodt.cas.workflow.instrepo.LuceneWorkflowInstanceRepositoryFactory");
System.setProperty("org.apache.oodt.cas.workflow.instanceRep.lucene.idxPath",
luceneCatLoc);
try {
System.setProperty("org.apache.oodt.cas.workflow.repo.dirs", "file://"
+ new File("./src/main/resources/examples").getCanonicalPath());
System.setProperty("org.apache.oodt.cas.workflow.lifecycle.filePath",
new File("./src/main/resources/examples/workflow-lifecycle.xml")
.getCanonicalPath());
} catch (Exception e) {
fail(e.getMessage());
}
try {
wmgr = new AvroRpcWorkflowManager(WM_PORT);
} catch (Exception e) {
fail(e.getMessage());
}
}
}