/* * 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.accumulo.server.util; import static org.easymock.EasyMock.createMock; import static org.easymock.EasyMock.expect; import static org.easymock.EasyMock.replay; import static org.junit.Assert.assertTrue; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.Iterator; import org.apache.accumulo.core.conf.Property; import org.apache.accumulo.core.file.FileSKVIterator; import org.apache.accumulo.server.fs.FileRef; import org.apache.accumulo.server.fs.VolumeManager; import org.apache.accumulo.server.fs.VolumeManagerImpl; import org.apache.hadoop.fs.Path; import org.junit.Assert; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import org.junit.rules.TestName; /** * */ public class FileUtilTest { @SuppressWarnings("deprecation") private static Property INSTANCE_DFS_DIR = Property.INSTANCE_DFS_DIR; @Rule public TemporaryFolder tmpDir = new TemporaryFolder(new File(System.getProperty("user.dir") + "/target")); @Rule public TestName testName = new TestName(); private File accumuloDir; @Before public void createTmpDir() throws IOException { accumuloDir = tmpDir.newFolder(testName.getMethodName()); } @Test public void testToPathStrings() { Collection<FileRef> c = new java.util.ArrayList<>(); FileRef r1 = createMock(FileRef.class); expect(r1.path()).andReturn(new Path("/foo")); replay(r1); c.add(r1); FileRef r2 = createMock(FileRef.class); expect(r2.path()).andReturn(new Path("/bar")); replay(r2); c.add(r2); Collection<String> cs = FileUtil.toPathStrings(c); Assert.assertEquals(2, cs.size()); Iterator<String> iter = cs.iterator(); Assert.assertEquals("/foo", iter.next()); Assert.assertEquals("/bar", iter.next()); } @Test public void testCleanupIndexOpWithDfsDir() throws IOException { // And a "unique" tmp directory for each volume File tmp1 = new File(accumuloDir, "tmp"); assertTrue(tmp1.mkdirs() || tmp1.isDirectory()); Path tmpPath1 = new Path(tmp1.toURI()); HashMap<Property,String> testProps = new HashMap<>(); testProps.put(INSTANCE_DFS_DIR, accumuloDir.getAbsolutePath()); VolumeManager fs = VolumeManagerImpl.getLocal(accumuloDir.getAbsolutePath()); FileUtil.cleanupIndexOp(tmpPath1, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp1 + " to be cleaned up but it wasn't", tmp1.exists()); } @Test public void testCleanupIndexOpWithCommonParentVolume() throws IOException { File volumeDir = new File(accumuloDir, "volumes"); assertTrue(volumeDir.mkdirs() || volumeDir.isDirectory()); // Make some directories to simulate multiple volumes File v1 = new File(volumeDir, "v1"), v2 = new File(volumeDir, "v2"); assertTrue(v1.mkdirs() || v1.isDirectory()); assertTrue(v2.mkdirs() || v2.isDirectory()); // And a "unique" tmp directory for each volume File tmp1 = new File(v1, "tmp"), tmp2 = new File(v2, "tmp"); assertTrue(tmp1.mkdirs() || tmp1.isDirectory()); assertTrue(tmp2.mkdirs() || tmp2.isDirectory()); Path tmpPath1 = new Path(tmp1.toURI()), tmpPath2 = new Path(tmp2.toURI()); HashMap<Property,String> testProps = new HashMap<>(); testProps.put(Property.INSTANCE_VOLUMES, v1.toURI().toString() + "," + v2.toURI().toString()); VolumeManager fs = VolumeManagerImpl.getLocal(accumuloDir.getAbsolutePath()); FileUtil.cleanupIndexOp(tmpPath1, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp1 + " to be cleaned up but it wasn't", tmp1.exists()); FileUtil.cleanupIndexOp(tmpPath2, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp2 + " to be cleaned up but it wasn't", tmp2.exists()); } @Test public void testCleanupIndexOpWithCommonParentVolumeWithDepth() throws IOException { File volumeDir = new File(accumuloDir, "volumes"); assertTrue(volumeDir.mkdirs() || volumeDir.isDirectory()); // Make some directories to simulate multiple volumes File v1 = new File(volumeDir, "v1"), v2 = new File(volumeDir, "v2"); assertTrue(v1.mkdirs() || v1.isDirectory()); assertTrue(v2.mkdirs() || v2.isDirectory()); // And a "unique" tmp directory for each volume // Make sure we can handle nested directories (a single tmpdir with potentially multiple unique dirs) File tmp1 = new File(new File(v1, "tmp"), "tmp_1"), tmp2 = new File(new File(v2, "tmp"), "tmp_1"); assertTrue(tmp1.mkdirs() || tmp1.isDirectory()); assertTrue(tmp2.mkdirs() || tmp2.isDirectory()); Path tmpPath1 = new Path(tmp1.toURI()), tmpPath2 = new Path(tmp2.toURI()); HashMap<Property,String> testProps = new HashMap<>(); testProps.put(Property.INSTANCE_VOLUMES, v1.toURI().toString() + "," + v2.toURI().toString()); VolumeManager fs = VolumeManagerImpl.getLocal(accumuloDir.getAbsolutePath()); FileUtil.cleanupIndexOp(tmpPath1, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp1 + " to be cleaned up but it wasn't", tmp1.exists()); FileUtil.cleanupIndexOp(tmpPath2, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp2 + " to be cleaned up but it wasn't", tmp2.exists()); } @Test public void testCleanupIndexOpWithoutCommonParentVolume() throws IOException { // Make some directories to simulate multiple volumes File v1 = new File(accumuloDir, "v1"), v2 = new File(accumuloDir, "v2"); assertTrue(v1.mkdirs() || v1.isDirectory()); assertTrue(v2.mkdirs() || v2.isDirectory()); // And a "unique" tmp directory for each volume File tmp1 = new File(v1, "tmp"), tmp2 = new File(v2, "tmp"); assertTrue(tmp1.mkdirs() || tmp1.isDirectory()); assertTrue(tmp2.mkdirs() || tmp2.isDirectory()); Path tmpPath1 = new Path(tmp1.toURI()), tmpPath2 = new Path(tmp2.toURI()); HashMap<Property,String> testProps = new HashMap<>(); testProps.put(Property.INSTANCE_VOLUMES, v1.toURI().toString() + "," + v2.toURI().toString()); VolumeManager fs = VolumeManagerImpl.getLocal(accumuloDir.getAbsolutePath()); FileUtil.cleanupIndexOp(tmpPath1, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp1 + " to be cleaned up but it wasn't", tmp1.exists()); FileUtil.cleanupIndexOp(tmpPath2, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp2 + " to be cleaned up but it wasn't", tmp2.exists()); } @Test public void testCleanupIndexOpWithoutCommonParentVolumeWithDepth() throws IOException { // Make some directories to simulate multiple volumes File v1 = new File(accumuloDir, "v1"), v2 = new File(accumuloDir, "v2"); assertTrue(v1.mkdirs() || v1.isDirectory()); assertTrue(v2.mkdirs() || v2.isDirectory()); // And a "unique" tmp directory for each volume // Make sure we can handle nested directories (a single tmpdir with potentially multiple unique dirs) File tmp1 = new File(new File(v1, "tmp"), "tmp_1"), tmp2 = new File(new File(v2, "tmp"), "tmp_1"); assertTrue(tmp1.mkdirs() || tmp1.isDirectory()); assertTrue(tmp2.mkdirs() || tmp2.isDirectory()); Path tmpPath1 = new Path(tmp1.toURI()), tmpPath2 = new Path(tmp2.toURI()); HashMap<Property,String> testProps = new HashMap<>(); testProps.put(Property.INSTANCE_VOLUMES, v1.toURI().toString() + "," + v2.toURI().toString()); VolumeManager fs = VolumeManagerImpl.getLocal(accumuloDir.getAbsolutePath()); FileUtil.cleanupIndexOp(tmpPath1, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp1 + " to be cleaned up but it wasn't", tmp1.exists()); FileUtil.cleanupIndexOp(tmpPath2, fs, new ArrayList<FileSKVIterator>()); Assert.assertFalse("Expected " + tmp2 + " to be cleaned up but it wasn't", tmp2.exists()); } }