1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
unit ftplistertest;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, ftplister,
fpcunit, testregistry;
{ TFtpListerTestcase }
type
TFtpListerTestcase= class(TTestCase)
private
function GetFiles: TStrings;
property Files : TStrings read GetFiles;
published
procedure TestHookUp;
procedure TestFtpFile;
procedure TestOldFtpFile;
end;
implementation
var
FileList: TStrings;
function TFtpListerTestcase.GetFiles: TStrings;
var
FtpLister : TFTPLister;
begin
if FileList=nil then begin
FTPLister := TFTPLister.Create;
FileList := FTPLister.GetList('ftp.hu.freepascal.org', '/pub/lazarus');
FTPLister.Free;
end;
Result := FileList;
end;
procedure TFtpListerTestcase.TestHookUp;
begin
AssertTrue('No files retrieved', Files.Count>0);
end;
procedure TFtpListerTestcase.TestFtpFile;
var
FtpFile : TFtpFile;
const
FtpLine = '-rw-r--r-- 1 1003 100 43560307 Oct 22 14:34 Lazarus-0.9.19-fpc-2.0.4-20061022-win32.exe';
begin
FtpFile := TFtpFile.Create(FtpLine);
try
AssertEquals('Wrong file name:', 'Lazarus-0.9.19-fpc-2.0.4-20061022-win32.exe', FtpFile.FileName);
AssertEquals('Wrong file date', '22-10-2011 14:34:00', DateTimeToStr(FtpFile.FileDate));
finally
FtpFile.Free;
end;
end;
procedure TFtpListerTestcase.TestOldFtpFile;
var
FtpFile : TFtpFile;
const
FtpLine = '-rw-r--r-- 1 1003 100 52533164 Jul 07 2006 lazarus-arm-wince-20060707.7z';
begin
FtpFile := TFtpFile.Create(FtpLine);
try
AssertEquals('Wrong file date', '07-07-2006', DateTimeToStr(FtpFile.FileDate));
finally
FtpFile.Free;
end;
end;
initialization
RegisterTest(TFtpListerTestcase);
finalization
FileList.Free;
end.
|