blob: 724c8e338e6526e3f20eb180d1bd03d6f854222d [file] [log] [blame]
/*
* 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.commands.impl.listing;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Calendar;
import java.util.List;
import java.util.TimeZone;
import junit.framework.TestCase;
import org.apache.ftpserver.command.impl.listing.MLSTFileFormater;
import org.apache.ftpserver.ftplet.FtpFile;
/**
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
*
*/
public class MLSTFileFormaterTest extends TestCase {
private static final Calendar LAST_MODIFIED_IN_2005 = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
static {
LAST_MODIFIED_IN_2005.clear();
LAST_MODIFIED_IN_2005.set(2005, Calendar.JANUARY, 2, 3, 4, 5);
}
private static final FtpFile TEST_FILE = new MockFileObject();
public MLSTFileFormater formater = new MLSTFileFormater(null);
public static class MockFileObject implements FtpFile {
public InputStream createInputStream(long offset) throws IOException {
return null;
}
public OutputStream createOutputStream(long offset) throws IOException {
return null;
}
public boolean delete() {
return false;
}
public boolean doesExist() {
return false;
}
public String getAbsolutePath() {
return "fullname";
}
public String getGroupName() {
return "group";
}
public long getLastModified() {
return LAST_MODIFIED_IN_2005.getTimeInMillis();
}
public int getLinkCount() {
return 1;
}
public String getOwnerName() {
return "owner";
}
public String getName() {
return "short";
}
public long getSize() {
return 13;
}
public boolean isRemovable() {
return false;
}
public boolean isReadable() {
return true;
}
public boolean isWritable() {
return false;
}
public boolean isDirectory() {
return false;
}
public boolean isFile() {
return true;
}
public boolean isHidden() {
return false;
}
public List<FtpFile> listFiles() {
return null;
}
public boolean mkdir() {
return false;
}
public boolean move(FtpFile destination) {
return false;
}
public boolean setLastModified(long time) {
return false;
}
public Object getPhysicalFile() {
return "/short";
}
}
public void testSingleFile() {
// time should be in UTC
assertEquals("Size=13;Modify=20050102030405.000;Type=file; short\r\n",
formater.format(TEST_FILE));
}
public void testSingleDir() {
FtpFile dir = new MockFileObject() {
@Override
public boolean isDirectory() {
return true;
}
@Override
public boolean isFile() {
return false;
}
@Override
public long getSize() {
return 0;
}
};
// time should be in UTC
assertEquals("Size=0;Modify=20050102030405.000;Type=dir; short\r\n",
formater.format(dir));
}
}