Package com.splunk.shuttl.archiver.archive

Source Code of com.splunk.shuttl.archiver.archive.BucketCopierTest

// 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.archive;

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

import java.util.List;

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

import com.splunk.shuttl.archiver.importexport.BucketExportController;
import com.splunk.shuttl.archiver.model.LocalBucket;
import com.splunk.shuttl.testutil.TUtilsBucket;

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

  private BucketCopier bucketCopier;
  private BucketExportController exporter;
  private ArchiveBucketTransferer archiveBucketTransferer;
  private BucketDeleter deletesBuckets;

  private LocalBucket bucket;
  private List<BucketFormat> bucketFormats;

  @BeforeMethod(groups = { "fast-unit" })
  public void setUp() {
    exporter = mock(BucketExportController.class);
    archiveBucketTransferer = mock(ArchiveBucketTransferer.class);
    deletesBuckets = mock(BucketDeleter.class);
    bucketFormats = asList(BucketFormat.SPLUNK_BUCKET);
    bucketCopier = new BucketCopier(exporter, archiveBucketTransferer,
        bucketFormats, deletesBuckets);

    bucket = TUtilsBucket.createBucket();
  }

  @Test(groups = { "fast-unit" })
  public void copyBucket_givenBucket_exportsBucketAndTransfersBucket() {
    LocalBucket exportedBucket = getMockedBucketReturnFromExporter();
    bucketCopier.copyBucket(bucket);
    verify(archiveBucketTransferer).transferBucketToArchive(exportedBucket);
  }

  private LocalBucket getMockedBucketReturnFromExporter() {
    LocalBucket exportedBucket = TUtilsBucket.createBucket();
    when(exporter.exportBucket(eq(bucket), any(BucketFormat.class)))
        .thenReturn(exportedBucket);
    return exportedBucket;
  }

  public void copyBucket_givenBucketAndExportedBucket_deletesExportedBucket() {
    LocalBucket exportedBucket = getMockedBucketReturnFromExporter();
    bucketCopier.copyBucket(bucket);
    verify(deletesBuckets).deleteBucket(exportedBucket);
  }

  public void copyBucket_whenExceptionIsThrown_deleteExportedBucket() {
    LocalBucket exportedBucket = getMockedBucketReturnFromExporter();
    doThrow(new RuntimeException()).when(archiveBucketTransferer)
        .transferBucketToArchive(exportedBucket);
    try {
      bucketCopier.copyBucket(bucket);
    } catch (Throwable e) {
      // Do nothing.
    }
    verify(deletesBuckets).deleteBucket(exportedBucket);
  }

  public void copyBucket_whenExportBucketIsSameAsOriginalBucket_doesNotDelete() {
    when(exporter.exportBucket(eq(bucket), any(BucketFormat.class)))
        .thenReturn(bucket);
    bucketCopier.copyBucket(bucket);
    verify(deletesBuckets, never()).deleteBucket(bucket);
  }

  public void copyBucket_bucketIsAlreadyArchivedInFormat_doesNotExportBucket() {
    BucketFormat format = bucketFormats.get(0);
    when(archiveBucketTransferer.isArchived(bucket, format)).thenReturn(true);
    bucketCopier.copyBucket(bucket);
    verify(exporter, never()).exportBucket(bucket, format);
  }

}
TOP

Related Classes of com.splunk.shuttl.archiver.archive.BucketCopierTest

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.