Package org.springframework.batch.core.step.skip

Source Code of org.springframework.batch.core.step.skip.LimitCheckingItemSkipPolicyTests

/*
* Copyright 2006-2008 the original author or authors.
*
* 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.springframework.batch.core.step.skip;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.Map;

import org.junit.Before;
import org.junit.Test;
import org.springframework.batch.item.ItemWriterException;
import org.springframework.batch.item.WriteFailedException;
import org.springframework.batch.item.WriterNotOpenException;
import org.springframework.batch.item.file.FlatFileParseException;

/**
* @author Lucas Ward
* @author Dave Syer
*
*/
public class LimitCheckingItemSkipPolicyTests {

  private LimitCheckingItemSkipPolicy failurePolicy;

  @Before
  public void setUp() throws Exception {
    Map<Class<? extends Throwable>, Boolean> skippableExceptions = new HashMap<Class<? extends Throwable>, Boolean>();
    skippableExceptions.put(FlatFileParseException.class, true);
    failurePolicy = new LimitCheckingItemSkipPolicy(1, skippableExceptions);
  }

  @Test
  public void testLimitExceed() {
    try {
      failurePolicy.shouldSkip(new FlatFileParseException("", ""), 2);
      fail();
    } catch (SkipLimitExceededException ex) {
      // expected
    }
  }

  @Test
  public void testNonSkippableException() {
    assertFalse(failurePolicy.shouldSkip(new FileNotFoundException(), 2));
  }

  @Test
  public void testSkip() {
    assertTrue(failurePolicy.shouldSkip(new FlatFileParseException("", ""), 0));
  }

  private LimitCheckingItemSkipPolicy getSkippableSubsetSkipPolicy() {
    Map<Class<? extends Throwable>, Boolean> skippableExceptions = new HashMap<Class<? extends Throwable>, Boolean>();
    skippableExceptions.put(WriteFailedException.class, true);
    skippableExceptions.put(ItemWriterException.class, false);
    return new LimitCheckingItemSkipPolicy(1, skippableExceptions);
  }

  /**
   * condition: skippable < fatal; exception is unclassified
   *
   * expected: false; default classification
   */
  @Test
  public void testSkippableSubset_unclassified() {
    assertFalse(getSkippableSubsetSkipPolicy().shouldSkip(new RuntimeException(), 0));
  }

  /**
   * condition: skippable < fatal; exception is skippable
   *
   * expected: true
   */
  @Test
  public void testSkippableSubset_skippable() {
    assertTrue(getSkippableSubsetSkipPolicy().shouldSkip(new WriteFailedException(""), 0));
  }

  /**
   * condition: skippable < fatal; exception is fatal
   *
   * expected: false
   */
  @Test
  public void testSkippableSubset_fatal() {
    assertFalse(getSkippableSubsetSkipPolicy().shouldSkip(new WriterNotOpenException(""), 0));
  }

  private LimitCheckingItemSkipPolicy getFatalSubsetSkipPolicy() {
    Map<Class<? extends Throwable>, Boolean> skippableExceptions = new HashMap<Class<? extends Throwable>, Boolean>();
    skippableExceptions.put(WriteFailedException.class, false);
    skippableExceptions.put(ItemWriterException.class, true);
    return new LimitCheckingItemSkipPolicy(1, skippableExceptions);
  }

  /**
   * condition: fatal < skippable; exception is unclassified
   *
   * expected: false; default classification
   */
  @Test
  public void testFatalSubset_unclassified() {
    assertFalse(getFatalSubsetSkipPolicy().shouldSkip(new RuntimeException(), 0));
  }

  /**
   * condition: fatal < skippable; exception is skippable
   *
   * expected: true
   */
  @Test
  public void testFatalSubset_skippable() {
    assertTrue(getFatalSubsetSkipPolicy().shouldSkip(new WriterNotOpenException(""), 0));
  }

  /**
   * condition: fatal < skippable; exception is fatal
   *
   * expected: false
   */
  @Test
  public void testFatalSubset_fatal() {
    assertFalse(getFatalSubsetSkipPolicy().shouldSkip(new WriteFailedException(""), 0));
  }
}
TOP

Related Classes of org.springframework.batch.core.step.skip.LimitCheckingItemSkipPolicyTests

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.