aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml/src/test/java/org/apache/poi/openxml4j/opc/TestFileHelper.java
blob: df6b364131b9a141d432aa57e4ad06810d60912b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* ====================================================================
   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.poi.openxml4j.opc;

import static org.junit.jupiter.api.Assertions.assertEquals;

import java.io.File;
import java.util.TreeMap;

import org.apache.poi.openxml4j.opc.internal.FileHelper;
import org.junit.jupiter.api.Test;

/**
 * Test TestFileHelper class.
 */
public final class TestFileHelper {

    /**
     * TODO - use simple JDK methods on {@link File} instead:<br>
     * {@link File#getParentFile()} instead of {@link FileHelper#getDirectory(File)
     * {@link File#getName()} instead of {@link FileHelper#getFilename(File)
     */
    @Test
    void testGetDirectory() {
        TreeMap<String, String> expectedValue = new TreeMap<>();
        expectedValue.put("/dir1/test.doc", "/dir1");
        expectedValue.put("/dir1/dir2/test.doc.xml", "/dir1/dir2");

        for (String filename : expectedValue.keySet()) {
            File f1 = new File(expectedValue.get(filename));
            File f2 = FileHelper.getDirectory(new File(filename));

//          if (false) {
//              // YK: The original version asserted expected values against File#getAbsolutePath():
//              assertTrue(expectedValue.get(filename).equalsIgnoreCase(f2.getAbsolutePath()));
//              // This comparison is platform dependent. A better approach is below
//          }
            assertEquals(f1, f2);
        }
    }
}