forked from VSoftTechnologies/Delphi-Mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Delphi.Mocks.Proxy.pas
921 lines (777 loc) · 29.6 KB
/
Delphi.Mocks.Proxy.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
{***************************************************************************}
{ }
{ Delphi.Mocks }
{ }
{ Copyright (C) 2011 Vincent Parrett }
{ }
{ 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 Delphi.Mocks.Proxy;
interface
uses
Rtti,
SysUtils,
TypInfo,
Generics.Collections,
Delphi.Mocks,
Delphi.Mocks.WeakReference,
Delphi.Mocks.Interfaces,
Delphi.Mocks.Behavior;
type
TProxyBaseInvokeEvent = procedure (Method: TRttiMethod; const Args: TArray<TValue>; out Result: TValue) of object;
TSetupMode = (None, Behavior, Expectation);
{$IFOPT M+}
{$M-}
{$DEFINE ENABLED_M+}
{$ENDIF}
IProxyVirtualInterface = interface
['{A0394EB0-245E-4AE6-AD71-3BC9815CD173}']
function QueryProxy(const IID: TGUID; out Obj : IProxy) : HRESULT;
function QueryInterfaceWithOwner(const IID: TGUID; out Obj; const ACheckOwner : Boolean): HRESULT; overload;
function QueryInterfaceWithOwner(const IID: TGUID; const ACheckOwner : Boolean): HRESULT; overload;
end;
{$IFDEF ENABLED_M+}
{$M+}
{$ENDIF}
TProxy<T> = class(TWeakReferencedObject, IWeakReferenceableObject, IInterface, IProxy, IProxy<T>, IStubProxy<T>, IMockSetup<T>, IStubSetup<T>, IExpect<T>, IVerify)
private
//Implements members.
//Can't define TProxy<T> or any other generic type as that type will be defined at runtime.
FParentProxy : IWeakReference<IProxy>;
FInterfaceProxies : TDictionary<TGUID, IProxy>;
FVirtualInterface : IProxyVirtualInterface;
FName : string;
FMethodData : TDictionary<string, IMethodData>;
FBehaviorMustBeDefined : Boolean;
FAllowRedefineBehaviorDefinitions : Boolean;
FSetupMode : TSetupMode;
//behavior setup
FNextBehavior : TBehaviorType;
FReturnValue : TValue;
FReturnValueNilAllowed : Boolean;
FNextFunc : TExecuteFunc;
FExceptClass : ExceptClass;
FExceptionMessage : string;
//expectation setup
FNextExpectation : TExpectationType;
FTimes : Cardinal;
FBetween : array[0..1] of Cardinal;
FIsStubOnly : boolean;
FQueryingInterface : boolean;
FQueryingInternalInterface : boolean;
FAutoMocker : IAutoMock;
protected type
TProxyVirtualInterface = class(TVirtualInterface, IInterface, IProxyVirtualInterface)
private
FProxy : IWeakReference<IProxy<T>>;
protected
//IProxyVirtualInterface
function QueryProxy(const IID: TGUID; out Obj : IProxy) : HRESULT;
function QueryInterfaceWithOwner(const IID: TGUID; out Obj; const ACheckOwner : Boolean): HRESULT; overload;
function QueryInterfaceWithOwner(const IID: TGUID; const ACheckOwner : Boolean): HRESULT; overload;
public
//TVirtualInterface overrides
constructor Create(const AProxy : IProxy<T>; const AInterface: Pointer; const InvokeEvent: TVirtualInterfaceInvokeEvent);
function QueryInterface(const IID: TGUID; out Obj): HRESULT; override; stdcall;
end;
protected
procedure SetParentProxy(const AProxy : IProxy);
function QueryImplementedInterface(const IID: TGUID; out Obj): HRESULT; stdcall;
function QueryInterface(const IID: TGUID; out Obj): HRESULT; virtual; stdcall;
function _AddRef: Integer; override; stdcall;
function _Release: Integer; override; stdcall;
//IProxy
function ProxyInterface : IInterface;
function ProxySupports(const Instance: IInterface; const IID: TGUID) : boolean; virtual;
function ProxyFromType(const ATypeInfo : PTypeInfo) : IProxy; virtual;
procedure AddImplement(const AProxy : IProxy; const ATypeInfo : PTypeInfo); virtual;
//IProxy<T>
function MockSetup : IMockSetup<T>;
function StubSetup : IStubSetup<T>;
function IProxy<T>.Setup = MockSetup;
function IStubProxy<T>.Setup = StubSetup;
function Proxy : T; virtual;
//ISetup<T>
function GetBehaviorMustBeDefined : boolean;
procedure SetBehaviorMustBeDefined(const value : boolean);
function GetAllowRedefineBehaviorDefinitions : boolean;
procedure SetAllowRedefineBehaviorDefinitions(const value : boolean);
function Expect : IExpect<T>;
{$Message 'TODO: Implement ISetup.Before and ISetup.After.'}
function WillReturn(const value : TValue) : IWhen<T>; overload;
function WillReturn(const value : TValue; const AllowNil: Boolean) : IWhen<T>; overload;
procedure WillReturnDefault(const AMethodName : string; const value : TValue);
function WillReturnNil: IWhen<T>;
function WillRaise(const exceptionClass : ExceptClass; const message : string = '') : IWhen<T>; overload;
procedure WillRaise(const AMethodName : string; const exceptionClass : ExceptClass; const message : string = ''); overload;
function WillExecute(const func : TExecuteFunc) : IWhen<T>; overload;
procedure WillExecute(const AMethodName : string; const func : TExecuteFunc); overload;
procedure DoInvoke(Method: TRttiMethod; const Args: TArray<TValue>; out Result: TValue);
//IVerify
procedure Verify(const message : string = '');
procedure VerifyAll(const message : string = '');
function CheckExpectations: string;
function GetMethodData(const AMethodName : string; const ATypeName: string) : IMethodData; overload;
procedure ClearSetupState;
//IExpect<T>
function Once : IWhen<T>;overload;
procedure Once(const AMethodName : string);overload;
function Never : IWhen<T>;overload;
procedure Never(const AMethodName : string);overload;
function AtLeastOnce : IWhen<T>;overload;
procedure AtLeastOnce(const AMethodName : string);overload;
function AtLeast(const times : Cardinal) : IWhen<T>;overload;
procedure AtLeast(const AMethodName : string; const times : Cardinal);overload;
function AtMost(const times : Cardinal) : IWhen<T>;overload;
procedure AtMost(const AMethodName : string; const times : Cardinal);overload;
function Between(const a,b : Cardinal) : IWhen<T>;overload;
procedure Between(const AMethodName : string; const a,b : Cardinal);overload;
function Exactly(const times : Cardinal) : IWhen<T>;overload;
procedure Exactly(const AMethodName : string; const times : Cardinal);overload;
function Before(const AMethodName : string) : IWhen<T>;overload;
procedure Before(const AMethodName : string; const ABeforeMethodName : string);overload;
function After(const AMethodName : string) : IWhen<T>;overload;
procedure After(const AMethodName : string; const AAfterMethodName : string);overload;
public
constructor Create(const AAutoMocker : IAutoMock = nil; const AIsStubOnly : boolean = false); virtual;
destructor Destroy; override;
end;
function Supports(const Instance: IProxyVirtualInterface; const IID: TGUID; out Intf; const ACheckOwner: Boolean): Boolean; overload;
function Supports(const Instance: IProxyVirtualInterface; const IID: TGUID; const ACheckOwner: Boolean): Boolean; overload;
function MethodKindToStr(const AMethodKind : TMethodKind) : string;
implementation
uses
Delphi.Mocks.Utils,
Delphi.Mocks.When,
Delphi.Mocks.MethodData,
Delphi.Mocks.ParamMatcher,
Windows;
function Supports(const Instance: IProxyVirtualInterface; const IID: TGUID; out Intf; const ACheckOwner: Boolean): Boolean;
begin
//See if we support the passed in interface. Passed on whether we need to check
//the owner for the implementation as well.
Result := (Instance <> nil) and (Instance.QueryInterfaceWithOwner(IID, Intf, ACheckOwner) = 0);
end;
function Supports(const Instance: IProxyVirtualInterface; const IID: TGUID; const ACheckOwner: Boolean): Boolean; overload;
begin
//See if we support the passed in interface. Passed on whether we need to check
//the owner for the implementation as well.
Result := (Instance <> nil) and (Instance.QueryInterfaceWithOwner(IID, ACheckOwner) = 0);
end;
function MethodKindToStr(const AMethodKind : TMethodKind) : string;
begin
case AMethodKind of
mkProcedure: Result := 'Procedure';
mkFunction: Result := 'Function';
mkConstructor: Result := 'Constructor';
mkDestructor: Result := 'Destructor';
mkClassProcedure: Result := 'Class Procedure';
mkClassFunction: Result := 'Class Function';
mkClassConstructor: Result := 'Class Constructor';
mkClassDestructor: Result := 'Class Destructor';
mkOperatorOverload: Result := 'Operator Overload';
mkSafeProcedure: Result := 'Safe Procedure';
mkSafeFunction: Result := 'Safe Function';
else
raise Exception.CreateFmt('Unexpected method kind passed to [%s]', [Ord(AMethodKind)]);
end;
end;
{ TProxyBase }
procedure TProxy<T>.AddImplement(const AProxy: IProxy; const ATypeInfo : PTypeInfo);
begin
if FInterfaceProxies.ContainsKey(GetTypeData(ATypeInfo).Guid) then
raise EMockProxyAlreadyImplemented.Create('The mock already implements ' + ATypeInfo.NameStr);
FInterfaceProxies.Add(GetTypeData(ATypeInfo).Guid, AProxy);
AProxy.SetParentProxy(Self);
end;
procedure TProxy<T>.After(const AMethodName, AAfterMethodName: string);
begin
raise Exception.Create('Not implemented');
end;
function TProxy<T>.After(const AMethodName: string): IWhen<T>;
begin
raise Exception.Create('Not implemented');
end;
procedure TProxy<T>.AtLeast(const AMethodName: string; const times: Cardinal);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName, pInfo.NameStr);
Assert(methodData <> nil);
methodData.AtLeast(times);
ClearSetupState;
end;
function TProxy<T>.AtLeast(const times: Cardinal): IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.AtLeastWhen;
FTimes := times;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.AtLeastOnce(const AMethodName: string);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.AtLeastOnce;
ClearSetupState;
end;
function TProxy<T>.AtLeastOnce: IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.AtLeastOnceWhen;
FTimes := 1;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.AtMost(const AMethodName: string; const times: Cardinal);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName, pInfo.NameStr);
Assert(methodData <> nil);
methodData.AtMost(times);
ClearSetupState;
end;
function TProxy<T>.AtMost(const times: Cardinal): IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.AtMostWhen;
FTimes := times;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.Before(const AMethodName, ABeforeMethodName: string);
begin
raise Exception.Create('not implemented');
end;
function TProxy<T>.Before(const AMethodName: string): IWhen<T>;
begin
raise Exception.Create('not implemented');
end;
procedure TProxy<T>.Between(const AMethodName: string; const a, b: Cardinal);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.Between(a,b);
ClearSetupState;
end;
function TProxy<T>.Between(const a, b: Cardinal): IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.BetweenWhen;
FBetween[0] := a;
FBetween[1] := b;
result := TWhen<T>.Create(Self.Proxy);
end;
function TProxy<T>.CheckExpectations: string;
var
methodData : IMethodData;
report : string;
begin
Result := '';
for methodData in FMethodData.Values do
begin
report := '';
if not methodData.Verify(report) then
begin
if Result <> '' then
Result := Result + #13#10;
Result := Result + report ;
end;
end;
end;
procedure TProxy<T>.ClearSetupState;
begin
FSetupMode := TSetupMode.None;
FReturnValue := TValue.Empty;
FExceptClass := nil;
FNextFunc := nil;
end;
constructor TProxy<T>.Create(const AAutoMocker : IAutoMock; const AIsStubOnly : boolean);
var
pInfo : PTypeInfo;
begin
inherited Create;
FAutoMocker := AAutoMocker;
FParentProxy := nil;
FVirtualInterface := nil;
FSetupMode := TSetupMode.None;
FBehaviorMustBeDefined := False;
FMethodData := TDictionary<string,IMethodData>.Create;
FIsStubOnly := AIsStubOnly;
FInterfaceProxies := TDictionary<TGUID, IProxy>.Create;
pInfo := TypeInfo(T);
case pInfo.Kind of
//Create our proxy interface object, which will implement our interface T
tkInterface :
begin
FVirtualInterface := TProxyVirtualInterface.Create(Self, TypeInfo(T), Self.DoInvoke);
end;
end;
FName := pInfo.NameStr;
end;
destructor TProxy<T>.Destroy;
begin
FVirtualInterface := nil;
FMethodData.Clear;
FMethodData.Free;
FInterfaceProxies.Clear;
FInterfaceProxies.Free;
FParentProxy := nil;
inherited;
end;
procedure TProxy<T>.DoInvoke(Method: TRttiMethod; const Args: TArray<TValue>; out Result: TValue);
var
returnVal : TValue;
methodData : IMethodData;
behavior : IBehavior;
pInfo : PTypeInfo;
matchers : TArray<IMatcher>;
begin
pInfo := TypeInfo(T);
case FSetupMode of
TSetupMode.None:
begin
//record actual behavior
methodData := GetMethodData(method.Name,pInfo.NameStr);
Assert(methodData <> nil);
methodData.RecordHit(Args,Method.ReturnType,Result);
end;
TSetupMode.Behavior:
begin
try
matchers := TMatcherFactory.GetMatchers;
if Length(matchers) > 0 then
if Length(matchers) < Length(Args) -1 then
raise EMockSetupException.Create('Setup called with Matchers but on on all parameters : ' + Method.Name );
//record desired behavior
//first see if we know about this method
methodData := GetMethodData(method.Name,pInfo.NameStr);
Assert(methodData <> nil);
case FNextBehavior of
TBehaviorType.WillReturn:
begin
case Method.MethodKind of
mkProcedure,
mkDestructor,
mkClassProcedure,
mkClassDestructor,
mkSafeProcedure : raise EMockSetupException.CreateFmt('Setup.WillReturn called on [%s] method [%s] which does not have a return value.', [MethodKindToStr(Method.MethodKind), Method.Name]);
//Method kinds which have a return value.
mkFunction, mkConstructor, mkClassFunction,
mkClassConstructor, mkOperatorOverload, mkSafeFunction: ;
end;
//We don't test for the return type being valid as XE5 and below have a RTTI bug which does not return
//a return type for function which reference their own class/interface. Even when RTTI is specified on
//the declaration and forward declaration.
if (FReturnValue.IsEmpty and not FReturnValueNilAllowed) or
(FReturnValueNilAllowed and ((FReturnValue.TypeInfo = nil) or (FReturnValue.TypeData = nil))) then
raise EMockSetupException.CreateFmt('Setup.WillReturn call on method [%s] was not passed a return value.', [Method.Name]);
methodData.WillReturnWhen(Args,FReturnValue,matchers);
end;
TBehaviorType.WillRaise:
begin
methodData.WillRaiseAlways(FExceptClass,FExceptionMessage);
end;
TBehaviorType.WillExecuteWhen :
begin
methodData.WillExecuteWhen(FNextFunc,Args,matchers);
end;
end;
finally
ClearSetupState;
end;
end;
TSetupMode.Expectation:
begin
try
//record expectations
//first see if we know about this method
methodData := GetMethodData(method.Name, pInfo.NameStr);
Assert(methodData <> nil);
matchers := TMatcherFactory.GetMatchers;
case FNextExpectation of
OnceWhen : methodData.OnceWhen(Args, matchers);
NeverWhen : methodData.NeverWhen(Args, matchers) ;
AtLeastOnceWhen : methodData.AtLeastOnceWhen(Args, matchers);
AtLeastWhen : methodData.AtLeastWhen(FTimes, args, matchers);
AtMostOnceWhen : methodData.AtLeastOnceWhen(Args, matchers);
AtMostWhen : methodData.AtMostWhen(FTimes, args, matchers);
BetweenWhen : methodData.BetweenWhen(FBetween[0], FBetween[1],Args, matchers);
ExactlyWhen : methodData.ExactlyWhen(FTimes, Args, matchers);
BeforeWhen : raise exception.Create('not implemented') ;
AfterWhen : raise exception.Create('not implemented');
end;
finally
ClearSetupState;
end;
end;
end;
end;
procedure TProxy<T>.Exactly(const AMethodName: string; const times: Cardinal);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.Exactly(times);
ClearSetupState;
end;
function TProxy<T>.Exactly(const times: Cardinal): IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.ExactlyWhen;
FTimes := times;
result := TWhen<T>.Create(Self.Proxy);
end;
function TProxy<T>.Expect: IExpect<T>;
begin
result := Self as IExpect<T> ;
end;
function TProxy<T>.GetBehaviorMustBeDefined: boolean;
begin
Result := FBehaviorMustBeDefined;
end;
function TProxy<T>.GetAllowRedefineBehaviorDefinitions : boolean;
begin
result := FAllowRedefineBehaviorDefinitions;
end;
function TProxy<T>.GetMethodData(const AMethodName: string; const ATypeName: string): IMethodData;
var
methodName : string;
pInfo : PTypeInfo;
setupParams: TSetupMethodDataParameters;
begin
methodName := LowerCase(AMethodName);
if FMethodData.TryGetValue(methodName,Result) then
exit;
setupParams := TSetupMethodDataParameters.Create(FIsStubOnly, FBehaviorMustBeDefined, FAllowRedefineBehaviorDefinitions);
Result := TMethodData.Create(ATypeName, AMethodName, setupParams, FAutoMocker);
FMethodData.Add(methodName,Result);
end;
function TProxy<T>.QueryImplementedInterface(const IID: TGUID; out Obj): HRESULT;
var
virtualProxy : IProxy;
begin
Result := E_NOINTERFACE;
if FQueryingInternalInterface then
Exit;
FQueryingInternalInterface := True;
try
//Otherwise look in the list of interface proxies that might have been implemented
if (FInterfaceProxies.ContainsKey(IID)) then
begin
virtualProxy := FInterfaceProxies.Items[IID];
Result := virtualProxy.ProxyInterface.QueryInterface(IID, Obj);
if result = S_OK then
Exit;
end;
{$Message 'TODO: Need to query the parent, but exclude outselves and any other children which have already been called.'}
//Call the parent.
if FParentProxy <> nil then
Result := FParentProxy.Data.QueryInterface(IID, obj);
finally
FQueryingInternalInterface := False;
end;
end;
procedure TProxy<T>.Never(const AMethodName: string);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName, pInfo.NameStr);
Assert(methodData <> nil);
methodData.Never;
ClearSetupState;
end;
function TProxy<T>.Never: IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.NeverWhen;
result := TWhen<T>.Create(Self.Proxy);
end;
function TProxy<T>.Once: IWhen<T>;
begin
FSetupMode := TSetupMode.Expectation;
FNextExpectation := TExpectationType.OnceWhen;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.Once(const AMethodName: string);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.Once;
ClearSetupState;
end;
function TProxy<T>.Proxy: T;
var
pInfo : PTypeInfo;
virtualProxy : IInterface;
begin
pInfo := TypeInfo(T);
if FVirtualInterface = nil then
raise EMockNoProxyException.Create('Error casting to interface ' + pInfo.NameStr + ' , proxy does not appear to implememnt T');
if FVirtualInterface.QueryInterface(GetTypeData(pInfo).Guid, result) <> 0 then
raise EMockNoProxyException.Create('Error casting to interface ' + pInfo.NameStr + ' , proxy does not appear to implememnt T');
end;
function TProxy<T>.QueryInterface(const IID: TGUID; out Obj): HRESULT;
var
virtualProxy : IInterface;
s : string;
begin
Result := E_NOINTERFACE;
//If we are already querying this interface, leave.
if FQueryingInterface then
Exit;
FQueryingInterface := True;
try
//The interface requested might be one of this classes interfaces. E.g. IProxy
Result := inherited QueryInterface(IID, Obj);
//If we have found the interface then return it.
if Result = S_OK then
Exit;
finally
FQueryingInterface := False;
end;
end;
procedure TProxy<T>.SetBehaviorMustBeDefined(const value: boolean);
begin
FBehaviorMustBeDefined := value;
end;
procedure TProxy<T>.SetAllowRedefineBehaviorDefinitions(const value : boolean);
begin
FAllowRedefineBehaviorDefinitions := value;
end;
procedure TProxy<T>.SetParentProxy(const AProxy : IProxy);
begin
FParentProxy := TWeakReference<IProxy>.Create(AProxy);
end;
function TProxy<T>.ProxyFromType(const ATypeInfo: PTypeInfo): IProxy;
var
interfaceID : TGUID;
begin
//Get the GUID of the type the proxy needs to support
interfaceID := GetTypeData(ATypeInfo).Guid;
//If we support the passed in type then return ourselves.
if ProxySupports(FVirtualInterface, interfaceID) then
begin
Result := Self;
Exit;
end;
//Are our children the proxy for this type?
if FInterfaceProxies.ContainsKey(interfaceID) then
begin
//Remember that the virtual interface will be of the passed in type, therefore
//return its proxy.
Result := FInterfaceProxies.Items[interfaceID].ProxyFromType(ATypeInfo);
Exit;
end;
raise EMockNoProxyException.Create('Error - No Proxy of type [' + ATypeInfo.NameStr + '] was found');
end;
function TProxy<T>.ProxySupports(const Instance: IInterface; const IID: TGUID): boolean;
begin
//We support the proxy if we have a virtual interface, which supports the passed in
//interface. As the virtual interface is built to support mulitple interfaces we
//need to ask it not check the other implementations.
Result := (FVirtualInterface <> nil) and Supports(FVirtualInterface, IID, False);
end;
function TProxy<T>.StubSetup: IStubSetup<T>;
begin
result := Self;
end;
function TProxy<T>.MockSetup: IMockSetup<T>;
begin
result := Self;
end;
function TProxy<T>.ProxyInterface: IInterface;
var
pInfo : PTypeInfo;
virtualProxy : IInterface;
begin
pInfo := TypeInfo(T);
if FVirtualInterface = nil then
raise EMockNoProxyException.Create('Error casting to interface ' + pInfo.NameStr + ' , proxy does not appear to implememnt T');
if FVirtualInterface.QueryInterface(GetTypeData(pInfo).Guid, result) <> 0 then
raise EMockNoProxyException.Create('Error casting to interface ' + pInfo.NameStr + ' , proxy does not appear to implememnt T');
end;
procedure TProxy<T>.Verify(const message: string);
var
msg : string;
begin
msg := CheckExpectations;
if msg <> '' then
raise EMockVerificationException.Create(message + #13#10 + msg);
end;
function TProxy<T>.WillExecute(const func: TExecuteFunc): IWhen<T>;
begin
FSetupMode := TSetupMode.Behavior;
FNextBehavior := TBehaviorType.WillExecuteWhen;
FNextFunc := func;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.WillExecute(const AMethodName: string; const func: TExecuteFunc);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
//actually record the behaviour here!
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.WillExecute(func);
ClearSetupState;
end;
function TProxy<T>.WillRaise(const exceptionClass: ExceptClass;const message : string): IWhen<T>;
begin
FSetupMode := TSetupMode.Behavior;
FNextBehavior := TBehaviorType.WillRaise;
FExceptClass := exceptionClass;
FExceptionMessage := message;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.WillRaise(const AMethodName: string; const exceptionClass: ExceptClass;const message : string);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
//actually record the behaviour here!
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName, pInfo.NameStr);
Assert(methodData <> nil);
methodData.WillRaiseAlways(exceptionClass,message);
ClearSetupState;
end;
function TProxy<T>.WillReturn(const value: TValue): IWhen<T>;
begin
FSetupMode := TSetupMode.Behavior;
FReturnValue := value;
FNextBehavior := TBehaviorType.WillReturn;
result := TWhen<T>.Create(Self.Proxy);
end;
function TProxy<T>.WillReturn(const value: TValue; const AllowNil: Boolean): IWhen<T>;
begin
FSetupMode := TSetupMode.Behavior;
FReturnValue := value;
FReturnValueNilAllowed := AllowNil;
FNextBehavior := TBehaviorType.WillReturn;
result := TWhen<T>.Create(Self.Proxy);
end;
procedure TProxy<T>.WillReturnDefault(const AMethodName : string; const value : TValue);
var
methodData : IMethodData;
pInfo : PTypeInfo;
begin
//actually record the behaviour here!
pInfo := TypeInfo(T);
methodData := GetMethodData(AMethodName,pInfo.NameStr);
Assert(methodData <> nil);
methodData.WillReturnDefault(value);
ClearSetupState;
end;
function TProxy<T>.WillReturnNil: IWhen<T>;
begin
FSetupMode := TSetupMode.Behavior;
FReturnValue := TValue.From<Pointer>(nil);
FReturnValueNilAllowed := True;
FNextBehavior := TBehaviorType.WillReturn;
result := TWhen<T>.Create(Self.Proxy);
end;
function TProxy<T>._AddRef: Integer;
begin
result := inherited;
end;
function TProxy<T>._Release: Integer;
begin
result := inherited;
end;
{ TProxy<T>.TProxyVirtualInterface }
constructor TProxy<T>.TProxyVirtualInterface.Create(const AProxy : IProxy<T>;
const AInterface: Pointer; const InvokeEvent: TVirtualInterfaceInvokeEvent);
begin
//Create a weak reference to our owner proxy. This is the proxy who implements
//all the mocking interfaces required to setup, and verify us.
FProxy := TWeakReference<IProxy<T>>.Create(AProxy);
inherited Create(Ainterface, InvokeEvent);
end;
function TProxy<T>.TProxyVirtualInterface.QueryInterface(const IID: TGUID; out Obj): HRESULT;
begin
//The default query interface will ask the owner for the implementing virtual
//interface for the type being queried for. This allows a virtual interface of
//IInterfaceOne to support IInterfaceTwo when asked. Use this when looking for
//the implementing virtual interface, use QueryProxy when looking for the
//owning proxy of the implemented type.
Result := QueryInterfaceWithOwner(IID, Obj, True);
end;
function TProxy<T>.TProxyVirtualInterface.QueryInterfaceWithOwner(const IID: TGUID; out Obj; const ACheckOwner: Boolean): HRESULT;
begin
//See if we support the passed in interface.
Result := inherited QueryInterface(IID, Obj);
//If we don't support the interface, then we need to look to our owner to see
//who does implement it. This allows for a single proxy to implement multiple
//interfaces at once.
if (ACheckOwner) and (Result <> 0) then
begin
if FProxy <> nil then
Result := FProxy.Data.QueryImplementedInterface(IID, Obj);
end;
end;
function TProxy<T>.TProxyVirtualInterface.QueryInterfaceWithOwner(const IID: TGUID; const ACheckOwner: Boolean): HRESULT;
var
dud : IInterface;
begin
Result := QueryInterfaceWithOwner(IID, dud, ACheckOwner);
end;
function TProxy<T>.TProxyVirtualInterface.QueryProxy(const IID: TGUID; out Obj : IProxy): HRESULT;
begin
Result := E_NOINTERFACE;
//If this virtual proxy (and only this virtual proxy) supports the passed in
//interface, return the proxy who owns us.
if QueryInterfaceWithOwner(IID, Obj, False) <> 0 then
Result := FProxy.QueryInterface(IProxy, Obj);
end;
procedure TProxy<T>.VerifyAll(const message: string);
var
proxy : IProxy;
interfaceV : IVerify;
begin
//Verify ourselves.
Verify;
//Now verify all our children.
for proxy in FInterfaceProxies.Values.ToArray do
if Supports(proxy, IVerify, interfaceV) then
interfaceV.Verify(message);
end;
end.