FlowLoaderFactoryTest.java

88 lines | 3.854 kB Blame History Raw Download
/*
* 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.project;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;

import azkaban.test.executions.ExecutionsTestUtil;
import azkaban.utils.Props;
import java.io.File;
import org.junit.Test;

public class FlowLoaderFactoryTest {

  private static final String FLOW_10_TEST_DIRECTORY = "exectest1";
  private static final String FLOW_20_TEST_DIRECTORY = "basicflowyamltest";
  private static final String FLOW_20_TEST_RECURSIVE_DIRECTORY = "recursivedirectoryyamltest";
  private static final String DUPLICATE_PROJECT_DIRECTORY = "duplicateprojectyamltest";
  private static final String INVALID_FLOW_VERSION_DIRECTORY = "invalidflowversiontest";
  private static final String NO_FLOW_VERSION_DIRECTORY = "noflowversiontest";

  @Test
  public void testCreateDirectoryFlowLoader() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(FLOW_10_TEST_DIRECTORY);
    final FlowLoader loader = loaderFactory.createFlowLoader(projectDir);
    assertThat(loader instanceof DirectoryFlowLoader).isTrue();
  }

  @Test
  public void testCreateDirectoryYamlFlowLoader() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(FLOW_20_TEST_DIRECTORY);
    final FlowLoader loader = loaderFactory.createFlowLoader(projectDir);
    assertThat(loader instanceof DirectoryYamlFlowLoader).isTrue();
  }

  @Test
  public void testCreateDirectoryYamlFlowLoaderWithRecursiveDirectory() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(FLOW_20_TEST_RECURSIVE_DIRECTORY);
    final FlowLoader loader = loaderFactory.createFlowLoader(projectDir);
    assertThat(loader instanceof DirectoryYamlFlowLoader).isTrue();
  }

  @Test
  public void testDuplicateProjectYamlFilesException() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(DUPLICATE_PROJECT_DIRECTORY);
    assertThatThrownBy(() -> loaderFactory.createFlowLoader(projectDir))
        .isInstanceOf(ProjectManagerException.class)
        .hasMessageContaining(
            "Duplicate project YAML files found in the project directory. Only one is allowed.");
  }

  @Test
  public void testNoFlowVersionException() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(NO_FLOW_VERSION_DIRECTORY);
    assertThatThrownBy(() -> loaderFactory.createFlowLoader(projectDir))
        .isInstanceOf(ProjectManagerException.class)
        .hasMessageContaining("azkaban-flow-version is not specified in the project YAML file.");
  }

  @Test
  public void testInvalidFlowVersionException() {
    final FlowLoaderFactory loaderFactory = new FlowLoaderFactory(new Props(null));
    final File projectDir = ExecutionsTestUtil.getFlowDir(INVALID_FLOW_VERSION_DIRECTORY);
    assertThatThrownBy(() -> loaderFactory.createFlowLoader(projectDir))
        .isInstanceOf(ProjectManagerException.class)
        .hasMessageContaining("Invalid azkaban-flow-version in the project YAML file.");
  }
}