/*
* Copyright 2010 netling project <http://netling.org>
*
* Licensed 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.
*
* This file may incorporate work covered by the following copyright and
* permission notice:
*
* 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.netling.ftp.parser;
import java.util.Calendar;
import org.netling.ftp.FTPFile;
import org.netling.ftp.FTPFileEntryParser;
public class NetwareFTPEntryParserTest extends FTPParseTestFramework {
private static final String[] badsamples = {
"a [-----F--] SCION_SYS 512 Apr 13 23:52 SYS",
"d [----AF--] 0 512 10-04-2001 _ADMIN"
};
private static final String [] goodsamples = {
"d [-----F--] SCION_SYS 512 Apr 13 23:52 SYS",
"d [----AF--] 0 512 Feb 22 17:32 _ADMIN",
"d [-W---F--] SCION_VOL2 512 Apr 13 23:12 VOL2",
"- [RWCEAFMS] rwinston 19968 Mar 12 15:20 Executive Summary.doc",
"d [RWCEAFMS] rwinston 512 Nov 24 2005 Favorites"
};
/**
* @see junit.framework.TestCase#TestCase(String)
*/
public NetwareFTPEntryParserTest(String name) {
super(name);
}
/**
* @see org.netling.ftp.parser.FTPParseTestFramework#getBadListing()
*/
@Override
protected String[] getBadListing() {
return (badsamples);
}
/**
* @see org.netling.ftp.parser.FTPParseTestFramework#getGoodListing()
*/
@Override
protected String[] getGoodListing() {
return (goodsamples);
}
/**
* @see org.netling.ftp.parser.FTPParseTestFramework#getParser()
*/
@Override
protected FTPFileEntryParser getParser() {
return (new NetwareFTPEntryParser());
}
/**
* @see org.netling.ftp.parser.FTPParseTestFramework#testParseFieldsOnDirectory()
*/
@Override
public void testParseFieldsOnDirectory() throws Exception {
String reply = "d [-W---F--] testUser 512 Apr 13 23:12 testFile";
FTPFile f = getParser().parseFTPEntry(reply);
assertNotNull("Could not parse file", f);
assertEquals("testFile", f.getName());
assertEquals(512L, f.getSize());
assertEquals("testUser", f.getUser());
assertTrue("Directory flag is not set!", f.isDirectory());
Calendar cal = Calendar.getInstance();
cal.set(Calendar.MONTH, 3);
cal.set(Calendar.DAY_OF_MONTH, 13);
cal.set(Calendar.HOUR_OF_DAY, 23);
cal.set(Calendar.MINUTE, 12);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
cal.set(Calendar.YEAR, f.getTimestamp().get(Calendar.YEAR));
assertEquals(df.format(cal.getTime()), df.format(f.getTimestamp()
.getTime()));
}
/**
* @see org.netling.ftp.parser.FTPParseTestFramework#testParseFieldsOnFile()
*/
@Override
public void testParseFieldsOnFile() throws Exception {
String reply = "- [R-CEAFMS] rwinston 19968 Mar 12 15:20 Document name with spaces.doc";
FTPFile f = getParser().parseFTPEntry(reply);
assertNotNull("Could not parse file", f);
assertEquals("Document name with spaces.doc", f.getName());
assertEquals(19968L, f.getSize());
assertEquals("rwinston", f.getUser());
assertTrue("File flag is not set!", f.isFile());
assertTrue(f.hasPermission(FTPFile.Access.USER, FTPFile.Permission.READ));
assertFalse(f.hasPermission(FTPFile.Access.USER, FTPFile.Permission.WRITE));
}
}