/*
* Copyright 2017 LinkedIn Corp.
*
* Licensed 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 azkaban.utils;
import azkaban.executor.ExecutableFlow;
import azkaban.flow.Flow;
import azkaban.project.Project;
import azkaban.test.executions.ExecutionsTestUtil;
import azkaban.user.User;
import azkaban.user.UserManager;
import azkaban.user.XmlUserManager;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
/**
* Commonly used utils method for unit/integration tests
*/publicclassTestUtils{
publicstatic User getTestUser(){
returnnew User("testUser");
}
/* Helper method to create an ExecutableFlow from serialized description */publicstatic ExecutableFlow createExecutableFlow(final String projectName,
final String flowName)throws IOException {
final File jsonFlowFile = ExecutionsTestUtil.getFlowFile(projectName, flowName + ".flow");
final HashMap<String, Object> flowObj =
(HashMap<String, Object>) JSONUtils.parseJSONFromFile(jsonFlowFile);
final Flow flow = Flow.flowFromObject(flowObj);
final Project project = new Project(1, "flow");
final HashMap<String, Flow> flowMap = new HashMap<>();
flowMap.put(flow.getId(), flow);
project.setFlows(flowMap);
final ExecutableFlow execFlow = new ExecutableFlow(project, flow);
return execFlow;
}
/* Helper method to create an XmlUserManager from XML_FILE_PARAM file */publicstatic UserManager createTestXmlUserManager(){
final Props props = new Props();
props.put(XmlUserManager.XML_FILE_PARAM, ExecutionsTestUtil.getDataRootDir()
+ "azkaban-users.xml");
final UserManager manager = new XmlUserManager(props);
return manager;
}
}