Package com.splunk.shuttl.archiver.importexport.csv

Source Code of com.splunk.shuttl.archiver.importexport.csv.CsvImporterTest

// Copyright (C) 2011 Splunk Inc.
//
// Splunk Inc. licenses this file
// to you 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 com.splunk.shuttl.archiver.importexport.csv;

import static java.util.Arrays.*;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import static org.testng.Assert.*;

import java.io.File;
import java.util.Collections;
import java.util.List;
import java.util.Map;

import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import com.splunk.shuttl.archiver.archive.BucketFormat;
import com.splunk.shuttl.archiver.importexport.ShellExecutor;
import com.splunk.shuttl.archiver.importexport.csv.splunk.SplunkImportTool;
import com.splunk.shuttl.archiver.model.Bucket;
import com.splunk.shuttl.archiver.model.BucketFactory;
import com.splunk.shuttl.archiver.model.LocalBucket;
import com.splunk.shuttl.archiver.util.UtilsBucket;
import com.splunk.shuttl.archiver.util.UtilsList;
import com.splunk.shuttl.testutil.TUtilsBucket;

@Test(groups = { "fast-unit" })
public class CsvImporterTest {

  private CsvImporter csvImporter;
  private SplunkImportTool splunkImportTool;
  private Map<String, String> emptyMap;
  private ShellExecutor shellExecutor;
  private BucketFactory bucketFactory;

  @BeforeMethod
  public void setUp() {
    splunkImportTool = mock(SplunkImportTool.class);
    shellExecutor = mock(ShellExecutor.class);
    bucketFactory = mock(BucketFactory.class);
    csvImporter = new CsvImporter(splunkImportTool, shellExecutor,
        bucketFactory);

    emptyMap = Collections.<String, String> emptyMap();
  }

  @Test(groups = { "fast-unit" })
  public void _givenCsvBucket_callsSplunkImportToolWithCsvFile() {
    LocalBucket csvBucket = TUtilsBucket.createRealCsvBucket();
    List<String> importTooExecutable = asList("path/to/importtool");
    when(splunkImportTool.getExecutableCommand()).thenReturn(
        importTooExecutable);
    when(splunkImportTool.getEnvironment()).thenReturn(emptyMap);
    File csvFile = UtilsBucket.getCsvFile(csvBucket);
    String[] arguments = new String[] {
        csvBucket.getDirectory().getAbsolutePath(), // <-- should move
        // this logic
        // somewhere.
        csvFile.getAbsolutePath() };
    List<String> command = UtilsList.join(importTooExecutable,
        asList(arguments));

    csvImporter.importBucket(csvBucket);

    verify(shellExecutor).executeCommand(emptyMap, command);
  }

  @SuppressWarnings("unchecked")
  public void _givenSuccessfulImportAndBucketCreation_removeCsvFile() {
    LocalBucket csvBucket = TUtilsBucket.createRealCsvBucket();
    File csvFile = UtilsBucket.getCsvFile(csvBucket);
    assertTrue(csvFile.exists());
    when(shellExecutor.executeCommand(anyMap(), anyList())).thenReturn(0);
    when(
        bucketFactory.createWithIndexDirectoryAndFormat(anyString(),
            any(File.class), any(BucketFormat.class))).thenReturn(
        TUtilsBucket.createBucket());

    Bucket importedBucket = csvImporter.importBucket(csvBucket);
    assertNotNull(importedBucket);
    assertFalse(csvFile.exists());
  }

  @SuppressWarnings("unchecked")
  public void _givenUnsuccessfulImport_dontRemoveCsvFile() {
    LocalBucket csvBucket = TUtilsBucket.createRealCsvBucket();
    File csvFile = UtilsBucket.getCsvFile(csvBucket);
    when(shellExecutor.executeCommand(anyMap(), anyList())).thenReturn(1);

    assertTrue(csvFile.exists());
    csvImporter.importBucket(csvBucket);
    assertTrue(csvFile.exists());
  }

  @SuppressWarnings("unchecked")
  public void _givenUnsuccessfulBucketCreation_dontRemoveCsvFile() {
    LocalBucket csvBucket = TUtilsBucket.createRealCsvBucket();
    File csvFile = UtilsBucket.getCsvFile(csvBucket);

    when(
        bucketFactory.createWithIndexDirectoryAndFormat(anyString(),
            any(File.class), any(BucketFormat.class))).thenThrow(
        RuntimeException.class);
    try {
      csvImporter.importBucket(csvBucket);
      fail();
    } catch (Exception e) {
      // Expected
    }
    assertTrue(csvFile.exists());
  }

  @Test(expectedExceptions = { IllegalArgumentException.class })
  public void _bucketNotInCsvFormat_throwsIllegalArgumentException() {
    LocalBucket nonCsvBucket = TUtilsBucket.createBucket();
    assertNotEquals(BucketFormat.CSV, nonCsvBucket.getFormat());
    csvImporter.importBucket(nonCsvBucket);
  }
}
TOP

Related Classes of com.splunk.shuttl.archiver.importexport.csv.CsvImporterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.