Build test fails under Windows XP
---------------------------------

                 Key: FTPSERVER-175
                 URL: https://issues.apache.org/jira/browse/FTPSERVER-175
             Project: FtpServer
          Issue Type: Bug
          Components: Core
    Affects Versions: 1.0-M4
         Environment: Windows XP, Sun JDK 1.6.0_03
            Reporter: Robin Windels
            Priority: Minor


excerpt from build log
  Failed tests:
    testFile(org.apache.ftpserver.config.spring.FileUserManagerConfigTest)

  Tests run: 571, Failures: 1, Errors: 0, Skipped: 0

Excerpt from Test set: 
org.apache.ftpserver.config.spring.FileUserManagerConfigTest
  junit.framework.ComparisonFailure: expected:<[/tmp/]foo.users> but 
was:<[C:\tmp\]foo.users>

Patch that works for me:
Index: FileUserManagerConfigTest.java
===================================================================
--- FileUserManagerConfigTest.java      (revision 693655)
+++ FileUserManagerConfigTest.java      (working copy)
@@ -41,7 +41,7 @@
 
     public void testFile() throws Throwable {
         PropertiesUserManager um = 
createPropertiesUserManager("<file-user-manager file=\"/tmp/foo.users\" />");
-        assertEquals("/tmp/foo.users", um.getFile().getAbsolutePath());
+        assertEquals("/tmp/foo.users".replace('/', 
um.getFile().separatorChar), um.getFile().getPath());
     }
 
     public void testMd5PasswordEncryptor() throws Throwable {


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to