/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF 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 org.apache.commons.io.comparator; import org.apache.commons.io.testtools.TestUtils; import org.junit.Before; import org.junit.Test; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Comparator; import java.util.List; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * Test case for {@link CompositeFileComparator}. */ public class CompositeFileComparatorTest extends ComparatorAbstractTestCase { @Before public void setUp() throws Exception { comparator = new CompositeFileComparator( new AbstractFileComparator[] { (AbstractFileComparator) SizeFileComparator.SIZE_COMPARATOR, (AbstractFileComparator) ExtensionFileComparator.EXTENSION_COMPARATOR}); reverse = new ReverseComparator(comparator); final File dir = getTestDirectory(); lessFile = new File(dir, "xyz.txt"); equalFile1 = new File(dir, "foo.txt"); equalFile2 = new File(dir, "bar.txt"); moreFile = new File(dir, "foo.xyz"); if (!lessFile.getParentFile().exists()) { throw new IOException("Cannot create file " + lessFile + " as the parent directory does not exist"); } try (final BufferedOutputStream output3 = new BufferedOutputStream(new FileOutputStream(lessFile))) { TestUtils.generateTestData(output3, (long) 32); } if (!equalFile1.getParentFile().exists()) { throw new IOException("Cannot create file " + equalFile1 + " as the parent directory does not exist"); } try (final BufferedOutputStream output2 = new BufferedOutputStream(new FileOutputStream(equalFile1))) { TestUtils.generateTestData(output2, (long) 48); } if (!equalFile2.getParentFile().exists()) { throw new IOException("Cannot create file " + equalFile2 + " as the parent directory does not exist"); } try (final BufferedOutputStream output1 = new BufferedOutputStream(new FileOutputStream(equalFile2))) { TestUtils.generateTestData(output1, (long) 48); } if (!moreFile.getParentFile().exists()) { throw new IOException("Cannot create file " + moreFile + " as the parent directory does not exist"); } try (final BufferedOutputStream output = new BufferedOutputStream(new FileOutputStream(moreFile))) { TestUtils.generateTestData(output, (long) 48); } } /** * Test Constructor with null Iterable */ @Test public void constructorIterable_order() { final List<Comparator<File>> list = new ArrayList<>(); list.add(SizeFileComparator.SIZE_COMPARATOR); list.add(ExtensionFileComparator.EXTENSION_COMPARATOR); final Comparator<File> c = new CompositeFileComparator(list); assertEquals("equal", 0, c.compare(equalFile1, equalFile2)); assertTrue("less", c.compare(lessFile, moreFile) < 0); assertTrue("more", c.compare(moreFile, lessFile) > 0); } /** * Test Constructor with null Iterable */ @Test public void constructorIterable_Null() { final Comparator<File> c = new CompositeFileComparator((Iterable<Comparator<File>>)null); assertEquals("less,more", 0, c.compare(lessFile, moreFile)); assertEquals("more,less", 0, c.compare(moreFile, lessFile)); assertEquals("toString", "CompositeFileComparator{}", c.toString()); } /** * Test Constructor with null array */ @Test public void constructorArray_Null() { final Comparator<File> c = new CompositeFileComparator((Comparator<File>[])null); assertEquals("less,more", 0, c.compare(lessFile, moreFile)); assertEquals("more,less", 0, c.compare(moreFile, lessFile)); assertEquals("toString", "CompositeFileComparator{}", c.toString()); } }