You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ftpserver-commits@incubator.apache.org by ng...@apache.org on 2007/01/19 16:55:10 UTC

svn commit: r497874 - /incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java

Author: ngn
Date: Fri Jan 19 08:55:09 2007
New Revision: 497874

URL: http://svn.apache.org/viewvc?view=rev&rev=497874
Log:
Adding test for sending and receiving files with I18N filenames

Added:
    incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java   (with props)

Added: incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java
URL: http://svn.apache.org/viewvc/incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java?view=auto&rev=497874
==============================================================================
--- incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java (added)
+++ incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java Fri Jan 19 08:55:09 2007
@@ -0,0 +1,80 @@
+/*
+ * 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.ftpserver.clienttests;
+
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+
+import org.apache.commons.net.ftp.FTPClient;
+import org.apache.ftpserver.test.TestUtil;
+
+
+public class I18NTest extends ClientTestTemplate {
+
+    private static final String TESTDATA = "TESTDATA";
+
+    private static final String ENCODING = "UTF-8";
+    
+    private static byte[] testData = null;
+    
+    /* (non-Javadoc)
+     * @see org.apache.ftpserver.clienttests.ClientTestTemplate#setUp()
+     */
+    protected void setUp() throws Exception {
+        super.setUp();
+
+        testData = TESTDATA.getBytes(ENCODING);
+                
+        client.login(ADMIN_USERNAME, ADMIN_PASSWORD);
+    }
+
+    
+    protected FTPClient createFTPClient() throws Exception {
+        FTPClient client = new FTPClient();
+        client.setControlEncoding("UTF-8");
+        return client;
+    }
+    
+    public void testStoreWithUTF8FileName() throws Exception {
+        
+        String oddFileName = "åäöç";
+        File testFile = new File(ROOT_DIR, oddFileName);
+
+        assertTrue(client.storeFile(oddFileName, new ByteArrayInputStream(testData)));
+        
+        assertTrue(testFile.exists());
+
+        TestUtil.assertFileEqual(testData, testFile);
+    }
+
+    public void testRetrieveWithUTF8FileName() throws Exception {
+        
+        String oddFileName = "åäöç";
+        File testFile = new File(ROOT_DIR, oddFileName);
+        TestUtil.writeDataToFile(testFile, testData);
+        
+        ByteArrayOutputStream baos = new ByteArrayOutputStream();
+        
+        assertTrue(client.retrieveFile(testFile.getName(), baos));
+        
+        TestUtil.assertArraysEqual(testData, baos.toByteArray());
+    }
+}

Propchange: incubator/ftpserver/trunk/core/src/test/org/apache/ftpserver/clienttests/I18NTest.java
------------------------------------------------------------------------------
    svn:eol-style = native