mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-11 00:22:32 +02:00
55 lines
1.2 KiB
ObjectPascal
55 lines
1.2 KiB
ObjectPascal
unit testfileproc;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, fpcunit, testglobals,
|
|
FileProcs;
|
|
|
|
type
|
|
|
|
{ TTestFileUtil }
|
|
|
|
TTestFileProc= class(TTestCase)
|
|
published
|
|
procedure TestFileIsExecutable;
|
|
procedure TestTrimFileName;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TTestFileProc }
|
|
|
|
procedure TTestFileProc.TestFileIsExecutable;
|
|
procedure DoTest(const AFileName: string; Expected: boolean);
|
|
begin
|
|
AssertEquals(AFileName, Expected, FileIsExecutable(AFileName));
|
|
end;
|
|
begin
|
|
DoTest(ParamStrUTF8(0),true);
|
|
// a directory is not an executable file
|
|
DoTest(ExtractFileDir(ParamStrUTF8(0)), false);
|
|
end;
|
|
|
|
procedure TTestFileProc.TestTrimFileName;
|
|
procedure DoTest(AFileName, Expected: string);
|
|
begin
|
|
DoDirSeparators(AFileName);
|
|
DoDirSeparators(Expected);
|
|
AssertEquals(AFileName, Expected, TrimFilename(AFileName));
|
|
end;
|
|
begin
|
|
{$ifdef windows}
|
|
DoTest('c:\LazarusDir\..\dir\','c:\dir\');
|
|
{$endif}
|
|
DoTest('$(LazarusDir)\..\dir\','$(LazarusDir)\..\dir\');
|
|
end;
|
|
|
|
initialization
|
|
// TODO: Maybe this test case should be moved to another testsuite, e.g. codetools test
|
|
AddToBugsTestSuite(TTestSuite.Create(TTestFileProc, 'TestFileProc'));
|
|
end.
|
|
|