View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.core.rolling;
15  
16  import ch.qos.logback.core.testUtil.CoreTestConstants;
17  import ch.qos.logback.core.util.Compare;
18  
19  import java.io.IOException;
20  import java.util.List;
21  
22  import static org.junit.Assert.assertTrue;
23  
24  public class ZRolloverChecker implements RolloverChecker {
25  
26      String testId;
27  
28      public ZRolloverChecker(String testId) {
29          this.testId = testId;
30      }
31  
32      public void check(List<String> expectedFilenameList) throws IOException {
33          int lastIndex = expectedFilenameList.size() - 1;
34          String lastFile = expectedFilenameList.get(lastIndex);
35          String witnessFileName = CoreTestConstants.TEST_SRC_PREFIX + "witness/rolling/tbr-" + testId;
36          assertTrue(Compare.compare(lastFile, witnessFileName));
37      }
38  }