/* * 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 gobblin.data.management.trash; import java.io.IOException; import java.util.Arrays; import java.util.Properties; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.testng.Assert; import org.testng.annotations.Test; import static org.mockito.Mockito.*; public class TestTrashTest { @Test public void test() throws IOException { FileSystem fs = mock(FileSystem.class); TestTrash trash = new TestTrash(fs, new Properties(), "user"); Path path1 = new Path("/some/path"); Path path2 = new Path("/some/other/path"); Assert.assertTrue(trash.moveToTrash(path1)); Assert.assertTrue(trash.moveToTrashAsOwner(path2)); System.out.println(Arrays.toString(trash.getDeleteOperations().toArray())); Assert.assertEquals(trash.getDeleteOperations().size(), 2); Assert.assertTrue(trash.getDeleteOperations().get(0).getPath().equals(path1)); Assert.assertNull(trash.getDeleteOperations().get(0).getUser()); Assert.assertTrue(trash.getDeleteOperations().get(1).getPath().equals(path2)); Assert.assertTrue(trash.getDeleteOperations().get(1).getUser().equals("user")); } @Test(enabled=false) public void testDelay() throws Exception { ExecutorService executorService = Executors.newFixedThreadPool(5); FileSystem fs = mock(FileSystem.class); Properties properties = new Properties(); TestTrash.simulateDelay(properties, 3); final TestTrash trash = new TestTrash(fs, properties, "user"); final Path path1 = new Path("/some/path"); Future<Boolean> future1 = executorService.submit(new Callable<Boolean>() { @Override public Boolean call() throws Exception { return trash.moveToTrash(path1); } }); while(trash.getOperationsReceived() < 1) { // Wait until confirm that operation was received by trash. } Assert.assertFalse(future1.isDone()); Assert.assertEquals(trash.getDeleteOperations().size(), 0); trash.tick(); Assert.assertFalse(future1.isDone()); Assert.assertEquals(trash.getDeleteOperations().size(), 0); trash.tick(); Assert.assertFalse(future1.isDone()); Assert.assertEquals(trash.getDeleteOperations().size(), 0); trash.tick(); Assert.assertEquals(trash.getDeleteOperations().size(), 1); Assert.assertTrue(future1.get()); Assert.assertNull(trash.getDeleteOperations().get(0).getUser()); Assert.assertTrue(trash.getDeleteOperations().get(0).getPath().equals(path1)); } }