View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      https://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  package org.apache.commons.io.file;
19  
20  import static org.apache.commons.io.file.CounterAssertions.assertCounts;
21  import static org.junit.jupiter.api.Assertions.assertTrue;
22  
23  import java.io.IOException;
24  import java.nio.file.Files;
25  import java.nio.file.Path;
26  import java.nio.file.Paths;
27  
28  import org.junit.jupiter.api.Test;
29  import org.junit.jupiter.api.io.TempDir;
30  
31  /**
32   * Tests {@link DeletingPathVisitor}.
33   */
34  class PathUtilsCleanDirectoryTest {
35  
36      @TempDir
37      private Path tempDir;
38  
39      /**
40       * Tests a directory with one file of size 0.
41       */
42      @Test
43      void testCleanDirectory1FileSize0() throws IOException {
44          PathUtils.copyDirectory(Paths.get("src/test/resources/org/apache/commons/io/dirs-1-file-size-0"), tempDir);
45          assertCounts(1, 1, 0, PathUtils.cleanDirectory(tempDir));
46          assertTrue(Files.exists(tempDir));
47      }
48  
49      /**
50       * Tests a directory with one file of size 1.
51       */
52      @Test
53      void testCleanDirectory1FileSize1() throws IOException {
54          PathUtils.copyDirectory(Paths.get("src/test/resources/org/apache/commons/io/dirs-1-file-size-1"), tempDir);
55          assertCounts(1, 1, 1, PathUtils.cleanDirectory(tempDir));
56          assertTrue(Files.exists(tempDir));
57      }
58  
59      /**
60       * Tests a directory with two subdirectories, each containing one file of size 1.
61       */
62      @Test
63      void testCleanDirectory2FileSize2() throws IOException {
64          PathUtils.copyDirectory(Paths.get("src/test/resources/org/apache/commons/io/dirs-2-file-size-2"), tempDir);
65          assertCounts(3, 2, 2, PathUtils.cleanDirectory(tempDir));
66          assertTrue(Files.exists(tempDir));
67      }
68  
69      /**
70       * Tests an empty folder.
71       */
72      @Test
73      void testCleanEmptyDirectory() throws IOException {
74          assertCounts(1, 0, 0, PathUtils.cleanDirectory(tempDir));
75          assertTrue(Files.exists(tempDir));
76      }
77  }