You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.4 KiB
63 lines
2.4 KiB
8 years ago
|
/* ====================================================================
|
||
|
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.
|
||
|
==================================================================== */
|
||
|
|
||
7 years ago
|
|
||
8 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
7 years ago
|
using System.IO;
|
||
|
using NPOI.OpenXml4Net.OPC.Internal;
|
||
|
using NUnit.Framework;
|
||
|
namespace TestCases.OPC
|
||
8 years ago
|
{
|
||
7 years ago
|
|
||
8 years ago
|
/**
|
||
|
* Test TestFileHelper class.
|
||
|
*
|
||
|
* @author Julien Chable
|
||
|
*/
|
||
|
[TestFixture]
|
||
|
public class TestFileHelper
|
||
|
{
|
||
7 years ago
|
|
||
8 years ago
|
/**
|
||
|
* 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]
|
||
7 years ago
|
public void TestGetDirectory()
|
||
|
{
|
||
|
Dictionary<String, String> expectedValue = new Dictionary<String, String>();
|
||
|
expectedValue["/dir1/test.doc"] ="/dir1";
|
||
8 years ago
|
expectedValue["/dir1/dir2/test.doc.xml"] = "/dir1/dir2";
|
||
|
|
||
7 years ago
|
foreach (String filename in expectedValue.Keys)
|
||
|
{
|
||
8 years ago
|
string f1 = expectedValue[filename];
|
||
|
string f2 = FileHelper.GetDirectory(filename);
|
||
|
|
||
7 years ago
|
if (false)
|
||
|
{
|
||
8 years ago
|
// YK: The original version asserted expected values against File#getAbsolutePath():
|
||
7 years ago
|
Assert.IsTrue(expectedValue[filename].Equals(f2,StringComparison.InvariantCultureIgnoreCase));
|
||
8 years ago
|
// This comparison is platform dependent. A better approach is below
|
||
|
}
|
||
|
Assert.IsTrue(f1.Equals(f2));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|