/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2017 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * 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 org.pentaho.di.job.entries.copyfiles; import static org.junit.Assert.*; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.pentaho.di.core.Result; import org.pentaho.di.core.logging.KettleLogStore; import org.pentaho.di.job.Job; import static org.mockito.Mockito.*; public class JobEntryCopyFilesTest { private JobEntryCopyFiles entry; private final String EMPTY = ""; @BeforeClass public static void setUpBeforeClass() throws Exception { KettleLogStore.init(); } @Before public void setUp() { entry = new JobEntryCopyFiles(); Job parentJob = new Job(); entry.setParentJob( parentJob ); entry = spy( entry ); } @Test public void fileNotCopied() throws Exception { entry.source_filefolder = new String[] { EMPTY }; entry.destination_filefolder = new String[] { EMPTY }; entry.wildcard = new String[] { EMPTY }; entry.execute( new Result(), 0 ); verify( entry, never() ).processFileFolder( anyString(), anyString(), anyString(), any( Job.class ), any( Result.class ) ); } @Test public void fileCopied() throws Exception { String srcPath = "path/to/file"; String destPath = "path/to/dir"; entry.source_filefolder = new String[] { srcPath }; entry.destination_filefolder = new String[] { destPath }; entry.wildcard = new String[] { EMPTY }; Result result = entry.execute( new Result(), 0 ); verify( entry ).processFileFolder( anyString(), anyString(), anyString(), any( Job.class ), any( Result.class ) ); assertFalse( result.getResult() ); assertEquals( 1, result.getNrErrors() ); } @Test public void filesCopied() throws Exception { String[] srcPath = new String[] { "path1", "path2", "path3" }; String[] destPath = new String[] { "dest1", "dest2", "dest3" }; entry.source_filefolder = srcPath; entry.destination_filefolder = destPath; entry.wildcard = new String[] { EMPTY, EMPTY, EMPTY }; Result result = entry.execute( new Result(), 0 ); verify( entry, times( srcPath.length ) ).processFileFolder( anyString(), anyString(), anyString(), any( Job.class ), any( Result.class ) ); assertFalse( result.getResult() ); assertEquals( 3, result.getNrErrors() ); } }