use of com.graphaware.nlp.workflow.task.WorkflowTaskInstanceItemInfo in project neo4j-nlp by graphaware.
the class DynamicConfigurationTest method testLoadingInstances.
@Test
public void testLoadingInstances() throws Exception {
resetSingleton();
ObjectMapper mapper = new ObjectMapper();
mapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS, false);
keyValueStore = new GraphKeyValueStore(getDatabase());
WorkflowTask workflowInput = new WorkflowTask("test", getDatabase());
DynamicConfiguration configuration = new DynamicConfiguration(getDatabase());
HashMap<String, Object> properties = new HashMap<>();
properties.put(WorkflowTaskConfiguration.WORFKLOW_INPUT_NAME, "");
properties.put(WorkflowTaskConfiguration.WORFKLOW_OUTPUT_NAME, "");
properties.put(WorkflowTaskConfiguration.WORFKLOW_PROCESSOR_NAME, "");
workflowInput.setConfiguration(new WorkflowTaskConfiguration(properties));
try (Transaction tx = getDatabase().beginTx()) {
configuration.storeWorkflowInstanceItem(workflowInput);
tx.success();
}
List<WorkflowInstanceItemInfo> pipelineInstanceItems = configuration.loadPipelineInstanceItems(WorkflowTask.WORFKLOW_TASK_KEY_PREFIX);
assertTrue(pipelineInstanceItems.size() == 1);
WorkflowInstanceItemInfo info = pipelineInstanceItems.get(0);
assertTrue(info instanceof WorkflowTaskInstanceItemInfo);
assertEquals("test", info.getName());
assertEquals("com.graphaware.nlp.workflow.task.WorkflowTask", info.getClassName());
}
Aggregations