org.pentaho.di.kitchen.KitchenCommandExecutorTest.java Source code

Java tutorial

Introduction

Here is the source code for org.pentaho.di.kitchen.KitchenCommandExecutorTest.java

Source

/*! ******************************************************************************
 *
 * Pentaho Data Integration
 *
 * Copyright (C) 2002-2019 by Hitachi Vantara : 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.kitchen;

import org.apache.commons.io.FileUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.pentaho.di.job.Job;

import java.io.File;
import java.util.Base64;

import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.anyBoolean;
import static org.mockito.Matchers.anyObject;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class KitchenCommandExecutorTest {

    private KitchenCommandExecutor mockedKitchenCommandExecutor;

    @Before
    public void setUp() throws Exception {

        mockedKitchenCommandExecutor = mock(KitchenCommandExecutor.class);

        // call real methods for loadTransFromFilesystem(), loadTransFromRepository();
        when(mockedKitchenCommandExecutor.loadJobFromFilesystem(anyString(), anyString(), anyObject()))
                .thenCallRealMethod();
        when(mockedKitchenCommandExecutor.loadJobFromRepository(anyObject(), anyString(), anyString()))
                .thenCallRealMethod();
        when(mockedKitchenCommandExecutor.decodeBase64ToZipFile(anyObject(), anyBoolean())).thenCallRealMethod();
        when(mockedKitchenCommandExecutor.decodeBase64ToZipFile(anyObject(), anyString())).thenCallRealMethod();
    }

    @After
    public void tearDown() {
        mockedKitchenCommandExecutor = null;
    }

    @Test
    public void testFilesystemBase64Zip() throws Exception {
        String fileName = "hello-world.kjb";
        File zipFile = new File(getClass().getResource("testKjbArchive.zip").toURI());
        String base64Zip = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(zipFile));
        Job job = mockedKitchenCommandExecutor.loadJobFromFilesystem(null, fileName, base64Zip);
        assertNotNull(job);
    }
}