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    *   http://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  
19  package org.apache.commons.net.ftp;
20  
21  import junit.framework.TestCase;
22  
23  public class FTPClientTest extends TestCase {
24  
25      private static final String[] TESTS = {
26          "257 /path/without/quotes",
27              "/path/without/quotes",
28  
29          "257 \"/path/with/delimiting/quotes/without/commentary\"",
30                "/path/with/delimiting/quotes/without/commentary",
31  
32          "257 \"/path/with/quotes\"\" /inside/but/without/commentary\"",
33                "/path/with/quotes\" /inside/but/without/commentary",
34  
35          "257 \"/path/with/quotes\"\" /inside/string\" and with commentary",
36                "/path/with/quotes\" /inside/string",
37  
38          "257 \"/path/with/quotes\"\" /inside/string\" and with commentary that also \"contains quotes\"",
39                "/path/with/quotes\" /inside/string",
40  
41          "257 \"/path/without/trailing/quote", // invalid syntax, return all after reply code prefix
42              "\"/path/without/trailing/quote",
43  
44          "257 root is current directory.", // NET-442
45              "root is current directory.",
46  
47          "257 \"/\"", // NET-502
48                "/",
49      };
50  
51      public FTPClientTest(String name) {
52          super(name);
53      }
54  
55      public void testParseClient() {
56          for(int i=0; i<TESTS.length; i+=2) {
57              assertEquals("Failed to parse",TESTS[i+1], FTPClient.__parsePathname(TESTS[i]));
58          }
59      }
60  
61  }