forked from VSoftTechnologies/DUnitX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DUnitX.TestResult.pas
214 lines (182 loc) · 6.52 KB
/
DUnitX.TestResult.pas
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{***************************************************************************}
{ }
{ DUnitX }
{ }
{ Copyright (C) 2013 Vincent Parrett }
{ }
{ vincent@finalbuilder.com }
{ http://www.finalbuilder.com }
{ }
{ }
{***************************************************************************}
{ }
{ 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. }
{ }
{***************************************************************************}
unit DUnitX.TestResult;
interface
uses
Timespan,
DUnitX.TestFramework,
DUnitX.WeakReference,
DUnitX.InternalInterfaces,
SysUtils;
{$I DUnitX.inc}
type
TDUnitXTestResult = class(TInterfacedObject, ITestResult)
private
//Keeping message as the user passed message. Not used for internal functionality like exception messages.
FMessage : string;
FResultType : TTestResultType;
FTest : IWeakReference<ITestInfo>;
FStackTrace : string;
protected
function GetMessage: string;
function GetResult: Boolean;
function GetResultType: TTestResultType;
function GetTest: ITestInfo;
function GetStartTime : TDateTime;
function GetFinishTime : TDateTime;
function GetDuration : TTimeSpan;
function GetStackTrace : string;
public
constructor Create(const ATestInfo : ITestInfo; const AType : TTestResultType; const AMessage : string = '');
end;
TDUnitXTestError = class(TDUnitXTestResult, ITestError)
private
FExceptionClass : ExceptClass;
FExceptionMessage : string;
FExceptionAddress : Pointer;
protected
function GetExceptionClass : ExceptClass;
function GetExceptionLocationInfo : string;
function GetExceptionAddressInfo : string;
function GetExceptionMessage : string;
function GetExceptionAddress : Pointer;
public
constructor Create(const ATestInfo : ITestInfo; const AType : TTestResultType; const AThrownException: Exception; const Addrs: Pointer; const AMessage : string = '');reintroduce;
end;
implementation
uses
DUnitX.IoC;
{ TDUnitXTestResult }
constructor TDUnitXTestResult.Create(const ATestInfo : ITestInfo; const AType: TTestResultType; const AMessage: string);
begin
FTest := TWeakReference<ITestInfo>.Create(ATestInfo);
FResultType := AType;
FMessage := AMessage;
end;
function TDUnitXTestResult.GetMessage: string;
begin
result := FMessage;
end;
function TDUnitXTestResult.GetResult: Boolean;
begin
result := GetResultType = TTestResultType.Pass;
end;
function TDUnitXTestResult.GetResultType: TTestResultType;
begin
result := FResultType;
end;
function TDUnitXTestResult.GetTest: ITestInfo;
begin
if FTest.IsAlive then
result := FTest.Data
else
result := nil;
end;
function TDUnitXTestResult.GetDuration: TTimeSpan;
begin
if FTest.IsAlive then
Result := FTest.Data.GetTestDuration
else
Result := TTimeSpan.Zero;
end;
function TDUnitXTestResult.GetFinishTime: TDateTime;
begin
if FTest.IsAlive then
Result := FTest.Data.GetTestEndTime
else
Result := 0;
end;
function TDUnitXTestResult.GetStackTrace: string;
begin
result := FStackTrace;
end;
function TDUnitXTestResult.GetStartTime: TDateTime;
begin
if FTest.IsAlive then
Result := FTest.Data.GetTestStartTime
else
Result := 0;
end;
{ TDUnitXTestError }
constructor TDUnitXTestError.Create(const ATestInfo : ITestInfo; const AType: TTestResultType; const AThrownException: Exception; const Addrs: Pointer; const AMessage: string = '');
{$IFDEF DELPHI_XE_UP}
var
stackTraceProvider : IStacktraceProvider;
{$ENDIF}
begin
inherited Create(ATestInfo, AType, AMessage);
FExceptionClass := ExceptClass(AThrownException.ClassType);
FExceptionMessage := AMessage;
if AMessage <> AThrownException.Message then
FExceptionMessage := FExceptionMessage + AThrownException.Message;
FExceptionAddress := Addrs;
{$IFDEF DELPHI_XE_UP}
stackTraceProvider := TDUnitXIoC.DefaultContainer.Resolve<IStacktraceProvider>();
if stackTraceProvider <> nil then
FStackTrace := stackTraceProvider.GetStackTrace(AThrownException,Addrs);
{$ENDIF}
end;
function TDUnitXTestError.GetExceptionAddress: Pointer;
begin
Result := FExceptionAddress;
end;
function TDUnitXTestError.GetExceptionAddressInfo: string;
{$IFDEF DELPHI_XE_UP}
var
stackTraceProvider : IStacktraceProvider;
{$ENDIF}
begin
{$IFDEF DELPHI_XE_UP}
stackTraceProvider := TDUnitXIoc.DefaultContainer.Resolve<IStacktraceProvider>();
if stackTraceProvider <> nil then
Result := stackTraceProvider.PointerToAddressInfo(FExceptionAddress)
else
{$ENDIF}
Result := '';
end;
function TDUnitXTestError.GetExceptionClass: ExceptClass;
begin
result := FExceptionClass;
end;
function TDUnitXTestError.GetExceptionLocationInfo: string;
{$IFDEF DELPHI_XE_UP}
var
stackTraceProvider : IStacktraceProvider;
{$ENDIF}
begin
{$IFDEF DELPHI_XE_UP}
stackTraceProvider := TDUnitXIoc.DefaultContainer.Resolve<IStacktraceProvider>();
if stackTraceProvider <> nil then
Result := stackTraceProvider.PointerToLocationInfo(FExceptionAddress)
else
{$ENDIF}
Result := '';
end;
function TDUnitXTestError.GetExceptionMessage: string;
begin
Result := FExceptionMessage;
end;
end.