blob: c30523ea35786abf61c3b4f7d02d11480ed96bdc (
plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
{
This file is part of the Free Component Library (FCL)
Copyright (c) 2005 by Dean Zobec
Decorators for fpcunit tests and one-time TTestSetup implementation
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit testdecorator;
{$mode objfpc}
{$h+}
interface
uses
Classes, SysUtils, fpcunit;
type
{ TTestDecorator }
TTestDecorator = class(TAssert)
private
FTest: TTest;
function GetTestName: string; override;
function GetTestSuiteName: string; override;
procedure SetTestSuiteName(const aName: string); override;
protected
function GetEnableIgnores: boolean; override;
procedure SetEnableIgnores(Value: boolean); override;
public
function CountTestCases: integer; override;
constructor Create(aTest: TTest); reintroduce; overload;
destructor Destroy; override;
procedure BasicRun(AResult: TTestResult); virtual;
procedure Run(AResult: TTestResult); override;
property Test: TTest read FTest;
end;
{ TTestSetup }
TTestSetup = class(TTestDecorator)
protected
procedure OneTimeSetup; virtual; abstract;
procedure OneTimeTearDown; virtual; abstract;
public
procedure Run(AResult: TTestResult); override;
end;
implementation
{ TTestDecorator }
function TTestDecorator.GetTestName: string;
begin
Result := FTest.TestName;
end;
function TTestDecorator.GetTestSuiteName: string;
begin
Result := FTest.TestSuiteName;
end;
procedure TTestDecorator.SetTestSuiteName(const aName: string);
begin
FTest.TestSuiteName := aName;
end;
function TTestDecorator.GetEnableIgnores: boolean;
begin
result := FTest.EnableIgnores;
end;
procedure TTestDecorator.SetEnableIgnores(Value: boolean);
begin
FTest.EnableIgnores := Value;
end;
function TTestDecorator.CountTestCases: integer;
begin
Result := FTest.CountTestCases;
end;
constructor TTestDecorator.Create(aTest: TTest);
begin
inherited Create;
FTest := aTest;
end;
destructor TTestDecorator.Destroy;
begin
FTest.Free;
inherited Destroy;
end;
procedure TTestDecorator.BasicRun(AResult: TTestResult);
begin
FTest.Run(AResult);
end;
procedure TTestDecorator.Run(AResult: TTestResult);
begin
BasicRun(AResult);
end;
procedure OneTimeProtect(aTest: TTest; aResult: TTestResult);
begin
if aTest is TTestSetup then
begin
TTestSetup(aTest).OneTimeSetup;
TTestSetup(aTest).BasicRun(aResult);
TTestSetup(aTest).OneTimeTearDown;
end;
end;
{ TTestSetup }
procedure TTestSetup.Run(AResult: TTestResult);
begin
AResult.RunProtected(Self, @OneTimeProtect);
end;
end.
|