-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathfflib_SObjectUnitOfWorkTest.cls
912 lines (805 loc) · 34 KB
/
fflib_SObjectUnitOfWorkTest.cls
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
/**
* Copyright (c), FinancialForce.com, inc
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the FinancialForce.com, inc nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
@IsTest(IsParallel=true)
private with sharing class fflib_SObjectUnitOfWorkTest
{
// SObjects (in order of dependency) used by UnitOfWork in tests bellow
private static List<Schema.SObjectType> MY_SOBJECTS =
new Schema.SObjectType[] {
Product2.SObjectType,
PricebookEntry.SObjectType,
Opportunity.SObjectType,
OpportunityLineItem.SObjectType };
@IsTest
private static void testUnitOfWorkEmail()
{
String testRecordName = 'UoW Test Name 1';
Messaging.SingleEmailMessage email = new Messaging.SingleEmailMessage();
email.setPlainTextBody('See Spot run.');
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.m_emailWork = new Mock_SendEmailWork();
Opportunity opp = new Opportunity();
opp.Name = testRecordName;
opp.StageName = 'Open';
opp.CloseDate = System.today();
uow.registerNew( opp );
uow.registerEmail( email );
uow.registerRelationship( email, opp );
uow.commitWork();
// assert that mock email functionality was called
System.assert(((Mock_SendEmailWork) uow.m_emailWork).doWorkWasCalled);
System.assertEquals(1, mockDML.recordsForInsert.size());
}
@IsTest
private static void testRegisterNew_ThrowExceptionOnDirtyRecord()
{
// GIVEN an existing record
Opportunity opportunity = new Opportunity(Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType));
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
// WHEN we register the existing record as new
Boolean exceptionThrown = false;
try
{
unitOfWork.registerNew(opportunity);
}
catch (Exception e)
{
exceptionThrown = true;
System.assertEquals(
'Only new records can be registered as new',
e.getMessage(),
'Incorrect exception message thrown'
);
}
// THEN it should have thrown an exception
System.assert(exceptionThrown);
}
@IsTest
private static void testRegisterDirty_ThrowExceptionOnNewRecord()
{
// GIVEN an new record
Opportunity opportunity = new Opportunity();
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
// WHEN we register the existing record as new
Boolean exceptionThrown = false;
try
{
unitOfWork.registerDirty(opportunity);
}
catch (Exception e)
{
exceptionThrown = true;
System.assertEquals(
'New records cannot be registered as dirty',
e.getMessage(),
'Incorrect exception message thrown'
);
}
// THEN it should have thrown an exception
System.assert(exceptionThrown);
}
@IsTest
private static void testRegisterDeleted()
{
// GIVEN - two existing records
Opportunity opportunity = new Opportunity(Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType));
Product2 product = new Product2(Id = fflib_IDGenerator.generate(Schema.Product2.SObjectType));
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
// WHEN - we mark the records as deleted
unitOfWork.registerDeleted(new List<SObject> { opportunity, product });
unitOfWork.commitWork();
// THEN - the dmlDelete action should be invoked
System.assertEquals(new List<SObject> { opportunity, product }, mockDML.recordsForDelete);
}
@IsTest
private static void testRegisterPermanentlyDeleted()
{
// GIVEN - two existing records
Opportunity opportunity = new Opportunity(Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType));
Product2 product = new Product2(Id = fflib_IDGenerator.generate(Schema.Product2.SObjectType));
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
// WHEN - we mark the records as deleted
unitOfWork.registerPermanentlyDeleted(new List<SObject> { opportunity, product });
unitOfWork.commitWork();
// THEN - the dmlDelete and emptyRecycleBin actions should be invoked
System.assertEquals(new List<SObject> { opportunity, product }, mockDML.recordsForDelete);
System.assertEquals(new List<SObject> { opportunity, product }, mockDML.recordsForRecycleBin);
}
@IsTest
private static void testRegisterEmptyRecycleBin()
{
// GIVEN - an existing record of the recycle bin
Opportunity opportunity = new Opportunity(Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType));
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
// WHEN - we empty the record from the recycle bin
unitOfWork.registerEmptyRecycleBin(new List<Opportunity>{ opportunity });
unitOfWork.commitWork();
// THEN - the emptyRecycleBin action should be invoked
System.assertEquals(1, mockDML.recordsForRecycleBin.size());
}
@IsTest
private static void testAssertForNonEventSObjectType()
{
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
unitOfWork.assertForNonEventSObjectType('CustomObject__c');
}
@IsTest
private static void testAssertForNonEventSObjectType_ThrowExceptionOnEventObject()
{
Boolean exceptionThrown = false;
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
try
{
unitOfWork.assertForNonEventSObjectType('PlatformEventObject__e');
}
catch (Exception e)
{
exceptionThrown = true;
System.assert(
e.getMessage().contains('registerPublishBeforeTransaction'),
'Incorrect exception message thrown'
);
}
System.assert(exceptionThrown);
}
@IsTest
private static void testAssertForEventSObjectType()
{
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
unitOfWork.assertForEventSObjectType('PlatformEventObject__e');
}
@IsTest
private static void testAssertForEventSObjectType_ThrowExceptionOnNonEventObject()
{
Boolean exceptionThrown = false;
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
try
{
unitOfWork.assertForEventSObjectType('CustomObject__c');
}
catch (Exception e)
{
exceptionThrown = true;
System.assert(
e.getMessage().contains('invalid for publishing'),
'Incorrect exception message thrown'
);
}
System.assert(exceptionThrown);
}
@IsTest
private static void testAssertForSupportedSObjectType_throwExceptionOnUnsupportedType()
{
Boolean exceptionThrown = false;
fflib_SObjectUnitOfWork unitOfWork = new fflib_SObjectUnitOfWork(MY_SOBJECTS);
try
{
unitOfWork.registerNew(new Account());
}
catch (Exception e)
{
exceptionThrown = true;
System.assert(
e.getMessage().contains('not supported by this unit of work'),
'Incorrect exception message thrown'
);
}
System.assert(exceptionThrown);
}
/**
* Create uow with new records and commit
*
* Testing:
*
* - Correct events are fired when commitWork completes successfully
*
*/
@IsTest
private static void testDerivedUnitOfWork_CommitSuccess()
{
// Insert Opportunities with UnitOfWork
MockDML mockDML = new MockDML();
DerivedUnitOfWork uow = new DerivedUnitOfWork(MY_SOBJECTS, mockDML);
for(Integer o=0; o<10; o++)
{
Opportunity opp = new Opportunity();
opp.Name = 'UoW Test Name ' + o;
opp.StageName = 'Open';
opp.CloseDate = System.today();
uow.registerNew(new List<SObject>{opp});
for(Integer i=0; i<o+1; i++)
{
Product2 product = new Product2();
product.Name = opp.Name + ' : Product : ' + i;
uow.registerNew(new List<SObject>{product});
PricebookEntry pbe = new PricebookEntry();
pbe.UnitPrice = 10;
pbe.IsActive = true;
pbe.UseStandardPrice = false;
uow.registerNew(pbe, PricebookEntry.Product2Id, product);
OpportunityLineItem oppLineItem = new OpportunityLineItem();
oppLineItem.Quantity = 1;
oppLineItem.TotalPrice = 10;
uow.registerRelationship(oppLineItem, OpportunityLineItem.PricebookEntryId, pbe);
uow.registerNew(oppLineItem, OpportunityLineItem.OpportunityId, opp);
}
}
uow.commitWork();
// Assert Results
System.assertEquals(175, mockDML.recordsForInsert.size(), 'Incorrect of new records');
assertEvents(new List<String> {
'onCommitWorkStarting'
, 'onPublishBeforeEventsStarting'
, 'onPublishBeforeEventsFinished'
, 'onDMLStarting'
, 'onDMLFinished'
, 'onDoWorkStarting'
, 'onDoWorkFinished'
, 'onCommitWorkFinishing'
, 'onPublishAfterSuccessEventsStarting'
, 'onPublishAfterSuccessEventsFinished'
, 'onCommitWorkFinished - true'
}
, uow.getCommitWorkEventsFired(), new Set<Schema.SObjectType>(MY_SOBJECTS), uow.getRegisteredTypes());
}
/**
* Create uow with data that results in DML Exception
*
* Testing:
*
* - Correct events are fired when commitWork fails during DML processing
*
*/
@IsTest
private static void testDerivedUnitOfWork_CommitDMLFail()
{
// Insert Opportunities with UnitOfWork forcing a failure on DML by not setting 'Name' field
DerivedUnitOfWork uow = new DerivedUnitOfWork(MY_SOBJECTS);
Opportunity opp = new Opportunity();
uow.registerNew(new List<SObject>{opp});
Boolean didFail = false;
System.DmlException caughtEx = null;
try {
uow.commitWork();
}
catch (System.DmlException dmlex) {
didFail = true;
caughtEx = dmlex;
}
// Assert Results
System.assertEquals(didFail, true, 'didFail');
System.assert(caughtEx.getMessage().contains('REQUIRED_FIELD_MISSING'), String.format('Exception message was ', new List<String> { caughtEx.getMessage() }));
assertEvents(new List<String> {
'onCommitWorkStarting'
, 'onPublishBeforeEventsStarting'
, 'onPublishBeforeEventsFinished'
, 'onDMLStarting'
, 'onPublishAfterFailureEventsStarting'
, 'onPublishAfterFailureEventsFinished'
, 'onCommitWorkFinished - false'
}
, uow.getCommitWorkEventsFired(), new Set<Schema.SObjectType>(MY_SOBJECTS), uow.getRegisteredTypes());
}
/**
* Create uow with work that fails
*
* Testing:
*
* - Correct events are fired when commitWork fails during DoWork processing
*
*/
@isTest
private static void testDerivedUnitOfWork_CommitDoWorkFail()
{
// Insert Opportunities with UnitOfWork
MockDML mockDML = new MockDML();
DerivedUnitOfWork uow = new DerivedUnitOfWork(MY_SOBJECTS, mockDML);
Opportunity opp = new Opportunity();
opp.Name = 'UoW Test Name 1';
opp.StageName = 'Open';
opp.CloseDate = System.today();
uow.registerNew(new List<SObject>{opp});
// register work that will fail during processing
FailDoingWork fdw = new FailDoingWork();
uow.registerWork(fdw);
Boolean didFail = false;
FailDoingWorkException caughtEx = null;
try {
uow.commitWork();
}
catch (FailDoingWorkException fdwe) {
didFail = true;
caughtEx = fdwe;
}
// Assert Results
System.assertEquals(didFail, true, 'didFail');
System.assert(caughtEx.getMessage().contains('Work failed.'), String.format('Exception message was ', new List<String> { caughtEx.getMessage() }));
assertEvents(new List<String> {
'onCommitWorkStarting'
, 'onPublishBeforeEventsStarting'
, 'onPublishBeforeEventsFinished'
, 'onDMLStarting'
, 'onDMLFinished'
, 'onDoWorkStarting'
, 'onPublishAfterFailureEventsStarting'
, 'onPublishAfterFailureEventsFinished'
, 'onCommitWorkFinished - false'
}
, uow.getCommitWorkEventsFired(), new Set<Schema.SObjectType>(MY_SOBJECTS), uow.getRegisteredTypes());
}
/**
* Try registering two instances of the same record as dirty. Second register should overwrite first.
*
* Testing:
*
* - Exception is thrown stopping second registration
*/
@IsTest
private static void testRegisterDirty_ExpectReplacement()
{
final Opportunity insertedOpp = new Opportunity(
Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType),
Name = 'Original',
StageName = 'Open',
CloseDate = System.today());
Opportunity opp = new Opportunity(Id = insertedOpp.Id, Name = 'Never');
Opportunity opp2 = new Opportunity(Id = insertedOpp.Id, Name = 'Expected');
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.registerDirty(opp);
uow.registerDirty(opp2);
uow.commitWork();
System.assertEquals(1, mockDML.recordsForUpdate.size());
System.assertEquals('Expected', mockDML.recordsForUpdate.get(0).get(Schema.Opportunity.Name));
}
/**
* Try registering a single field as dirty.
*
* Testing:
*
* - field is updated
*/
@IsTest
private static void testRegisterDirty_field() {
Opportunity opp = new Opportunity(
Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType),
Name = 'test name',
StageName = 'Open',
CloseDate = System.today());
Opportunity nameUpdate = new Opportunity(Id = opp.Id, Name = 'UpdateName');
Opportunity amountUpdate = new Opportunity(Id = opp.Id, Amount = 250);
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.registerDirty(nameUpdate);
uow.registerDirty(amountUpdate, new List<SObjectField> { Opportunity.Amount } );
uow.commitWork();
System.assertEquals(1, mockDML.recordsForUpdate.size());
System.assertEquals(nameUpdate.Name, mockDML.recordsForUpdate.get(0).get(Schema.Opportunity.Name));
System.assertEquals(amountUpdate.Amount, mockDML.recordsForUpdate.get(0).get(Schema.Opportunity.Amount));
}
/**
* Try registering a single field as dirty on multiple records.
*
*/
@IsTest
private static void testRegisterDirtyRecordsWithDirtyFields()
{
// GIVEN a list of existing records
Opportunity opportunityA = new Opportunity(
Id = fflib_IDGenerator.generate(Opportunity.SObjectType),
Name = 'test name A',
StageName = 'Open',
CloseDate = System.today());
Opportunity opportunityB = new Opportunity(
Id = fflib_IDGenerator.generate(Opportunity.SObjectType),
Name = 'test name B',
StageName = 'Open',
CloseDate = System.today());
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.registerDirty(new List<Opportunity>{ opportunityA, opportunityB });
// WHEN we register the records again with different fields updated
List<Opportunity> recordsWithStageUpdate = new List<Opportunity>
{
new Opportunity(Id = opportunityA.Id, StageName = 'Closed'),
new Opportunity(Id = opportunityB.Id, StageName = 'Closed')
};
List<Opportunity> recordsWithAmountUpdate = new List<Opportunity>
{
new Opportunity(Id = opportunityA.Id, Amount = 250),
new Opportunity(Id = opportunityB.Id, Amount = 250)
};
uow.registerDirty(recordsWithStageUpdate, new List<SObjectField> { Opportunity.StageName });
uow.registerDirty(recordsWithAmountUpdate, new List<SObjectField> { Opportunity.Amount });
uow.commitWork();
// THEN the records should be registered with both changed values for Amount and StageName
System.assert(
new fflib_MatcherDefinitions.SObjectsWith(
new List<Map<SObjectField, Object>>{
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityA.Id,
Opportunity.Amount => 250,
Opportunity.StageName => 'Closed'
},
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityB.Id,
Opportunity.Amount => 250,
Opportunity.StageName => 'Closed'
}
}
)
.matches(mockDML.recordsForUpdate),
'Records not registered with the correct values'
);
}
/**
* Try registering a single field as dirty on multiple records.
*
*/
@IsTest
private static void testRegisterDirtyRecordsWithDirtyFields_failing()
{
// GIVEN a list of existing records
Opportunity opportunityA = new Opportunity(
Id = fflib_IDGenerator.generate(Opportunity.SObjectType),
Name = 'test name A',
StageName = 'Open',
CloseDate = System.today());
Opportunity opportunityB = new Opportunity(
Id = fflib_IDGenerator.generate(Opportunity.SObjectType),
Name = 'test name B',
StageName = 'Open',
CloseDate = System.today());
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.registerDirty(new List<Opportunity>{ opportunityA, opportunityB });
// WHEN we register the records again with different fields updated
List<Opportunity> recordsWithStageUpdate = new List<Opportunity>
{
new Opportunity(Id = opportunityA.Id, StageName = 'Closed'),
new Opportunity(Id = opportunityB.Id, StageName = 'Closed')
};
List<Opportunity> recordsWithAmountUpdate = new List<Opportunity>
{
new Opportunity(Id = opportunityA.Id, Amount = 250),
new Opportunity(Id = opportunityB.Id, Amount = 250)
};
uow.registerDirty(recordsWithStageUpdate, new List<SObjectField> { Opportunity.StageName });
uow.registerDirty(recordsWithAmountUpdate, new List<SObjectField> { Opportunity.Amount });
uow.registerDirty( // Register again the original record, should overwrite the one with the dirty fields
new Opportunity(
Id = opportunityB.Id,
Name = 'test name B',
StageName = 'Open',
CloseDate = System.today())
);
uow.commitWork();
// THEN only the first record should be registered with both changed values for Amount and StageName and the second should be the original
System.assert(
!new fflib_MatcherDefinitions.SObjectsWith(
new List<Map<SObjectField, Object>>{
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityA.Id,
Opportunity.Amount => 250,
Opportunity.StageName => 'Closed'
},
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityB.Id,
Opportunity.Amount => 250,
Opportunity.StageName => 'Closed'
}
}
)
.matches(mockDML.recordsForUpdate),
'Not all records should not be registered with the dirty values'
);
System.assert(
new fflib_MatcherDefinitions.SObjectsWith(
new List<Map<SObjectField, Object>>{
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityA.Id,
Opportunity.Amount => 250,
Opportunity.StageName => 'Closed'
},
new Map<SObjectField, Object>
{
Opportunity.Id => opportunityB.Id,
Opportunity.StageName => 'Open'
}
}
)
.matches(mockDML.recordsForUpdate),
'The second record should be registered with the original values'
);
}
@IsTest
private static void testRegisterDirtyRelatedToNewSobject() {
// GIVEN an existing opportunity
Opportunity existingOpp = new Opportunity(
Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType),
Name = 'Existing Opportunity',
StageName = 'Closed',
CloseDate = System.today()
);
// AND a new Account to which the existing opportunity will be related to
Account newAccount = new Account(
Name = 'New Account'
);
// WHEN
Test.startTest();
MockDML mockDML = new MockDML();
List<Schema.SObjectType> mySobjects = new List<Schema.SObjectType>{
Account.SObjectType,
Opportunity.SObjectType
};
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(mySobjects, mockDML);
uow.registerNew(newAccount);
uow.registerDirty(existingOpp, Opportunity.AccountId, newAccount);
uow.commitWork();
Test.stopTest();
// THEN
System.assert(
new fflib_MatcherDefinitions.SObjectsWith(
new List<Map<SObjectField, Object>>{
new Map<SObjectField, Object>
{
Account.Id => newAccount.Id,
Account.Name => 'New Account'
}
}
).matches(mockDML.recordsForInsert),
'The new accoout record does not match'
);
// AND
System.assert(
new fflib_MatcherDefinitions.SObjectsWith(
new List<Map<SObjectField, Object>>{
new Map<SObjectField, Object>
{
Opportunity.Id => existingOpp.Id,
Opportunity.Name => 'Existing Opportunity',
Opportunity.StageName => 'Closed',
Opportunity.AccountId => newAccount.Id
}
}
).matches(mockDML.recordsForUpdate),
'The opportunity record should be related to the new Account'
);
}
@IsTest
private static void testRegisterUpsert() {
Opportunity existingOpp = new Opportunity(
Id = fflib_IDGenerator.generate(Schema.Opportunity.SObjectType),
Name = 'Existing Opportunity',
StageName = 'Closed',
CloseDate = System.today());
Opportunity newOpportunity = new Opportunity(Name = 'New Opportunity', StageName = 'Closed', CloseDate = System.today());
Test.startTest();
MockDML mockDML = new MockDML();
fflib_SObjectUnitOfWork uow = new fflib_SObjectUnitOfWork(MY_SOBJECTS, mockDML);
uow.registerUpsert(new List<Opportunity>{existingOpp, newOpportunity});
uow.commitWork();
Test.stopTest();
System.assertEquals(1, mockDML.recordsForUpdate.size());
System.assertEquals(1, mockDML.recordsForInsert.size());
}
@IsTest
private static void constructUserModeDML_When_DefaultConstructor_Expect_UserMode(){
fflib_SObjectUnitOfWork.UserModeDML dml = new fflib_SObjectUnitOfWork.UserModeDML();
System.assertEquals(AccessLevel.USER_MODE,dml.m_accessLevel);
}
@IsTest
private static void constructUserModeDML_When_AccessLevelSupplied_Expect_SameAccessLevel(){
fflib_SObjectUnitOfWork.UserModeDML dml = new fflib_SObjectUnitOfWork.UserModeDML(AccessLevel.SYSTEM_MODE);
System.assertEquals(AccessLevel.SYSTEM_MODE,dml.m_accessLevel);
}
/**
* Assert that actual events exactly match expected events (size, order and name)
* and types match expected types
*/
private static void assertEvents(List<String> expectedEvents, List<String> actualEvents, Set<Schema.SObjectType> expectedTypes, Set<Schema.SObjectType> actualTypes)
{
// assert that events match
System.assertEquals(expectedEvents.size(), actualEvents.size(), 'events size');
for (Integer i = 0; i < expectedEvents.size(); i++)
{
System.assertEquals(expectedEvents[i], actualEvents[i], String.format('Event {0} was not fired in order expected.', new List<String> { expectedEvents[i] }));
}
// assert that types match
System.assertEquals(expectedTypes.size(), actualTypes.size(), 'types size');
for (Schema.SObjectType sObjectType :expectedTypes)
{
System.assertEquals(true, actualTypes.contains(sObjectType), String.format('Type {0} was not registered.', new List<String> { sObjectType.getDescribe().getName() }));
}
}
/**
* DoWork implementation that throws exception during processing
*/
private class FailDoingWork implements fflib_SObjectUnitOfWork.IDoWork
{
public void doWork()
{
throw new FailDoingWorkException('Work failed.');
}
}
/**
* Derived unit of work that tracks event notifications and handle registration of type
*/
private class DerivedUnitOfWork extends fflib_SObjectUnitOfWork
{
private List<String> m_commitWorkEventsFired = new List<String>();
private Set<Schema.SObjectType> m_registeredTypes = new Set<Schema.SObjectType>();
public List<String> getCommitWorkEventsFired()
{
return m_commitWorkEventsFired.clone();
}
public Set<Schema.SObjectType> getRegisteredTypes()
{
return m_registeredTypes.clone();
}
public DerivedUnitOfWork(List<Schema.SObjectType> sObjectTypes)
{
super(sObjectTypes);
}
public DerivedUnitOfWork(List<Schema.SObjectType> sObjectTypes, IDML dml)
{
super(sObjectTypes, dml);
}
private void addEvent(String event)
{
// events should only be fired one time
// ensure that this event has not been fired already
for (String eventName :m_commitWorkEventsFired)
{
if (event == eventName)
{
throw new DerivedUnitOfWorkException(String.format('Event {0} has already been fired.', new List<String> { event }));
}
}
m_commitWorkEventsFired.add(event);
}
public override void onRegisterType(Schema.SObjectType sObjectType)
{
if (m_registeredTypes.contains(sObjectType))
{
throw new DerivedUnitOfWorkException(String.format('Type {0} has already been registered.', new List<String> { sObjectType.getDescribe().getName() }));
}
m_registeredTypes.add(sObjectType);
}
public override void onCommitWorkStarting()
{
addEvent('onCommitWorkStarting');
}
public override void onPublishBeforeEventsStarting()
{
addEvent('onPublishBeforeEventsStarting');
}
public override void onPublishBeforeEventsFinished()
{
addEvent('onPublishBeforeEventsFinished');
}
public override void onDMLStarting()
{
addEvent('onDMLStarting');
}
public override void onDMLFinished()
{
addEvent('onDMLFinished');
}
public override void onDoWorkStarting()
{
addEvent('onDoWorkStarting');
}
public override void onDoWorkFinished()
{
addEvent('onDoWorkFinished');
}
public override void onCommitWorkFinishing()
{
addEvent('onCommitWorkFinishing');
}
public override void onPublishAfterSuccessEventsStarting()
{
addEvent('onPublishAfterSuccessEventsStarting');
}
public override void onPublishAfterSuccessEventsFinished()
{
addEvent('onPublishAfterSuccessEventsFinished');
}
public override void onPublishAfterFailureEventsStarting()
{
addEvent('onPublishAfterFailureEventsStarting');
}
public override void onPublishAfterFailureEventsFinished()
{
addEvent('onPublishAfterFailureEventsFinished');
}
public override void onCommitWorkFinished(Boolean wasSuccessful)
{
addEvent('onCommitWorkFinished - ' + wasSuccessful);
}
}
/**
* Mock implementation of fflib_SObjectUnitOfWork.SendEmailWork
**/
private class Mock_SendEmailWork implements fflib_SObjectUnitOfWork.IEmailWork
{
public Mock_SendEmailWork()
{
}
public void registerEmail(Messaging.Email email)
{
}
public void doWork()
{
doWorkWasCalled = true;
// The code in the fflib_SObjectUnitOfWork class
// causes unit test failures in Orgs that do not
// have email enabled.
}
private Boolean doWorkWasCalled = false;
}
private class MockDML implements fflib_SObjectUnitOfWork.IDML
{
public List<SObject> recordsForInsert = new List<SObject>();
public List<SObject> recordsForUpdate = new List<SObject>();
public List<SObject> recordsForDelete = new List<SObject>();
public List<SObject> recordsForRecycleBin = new List<SObject>();
public List<SObject> recordsForEventPublish = new List<SObject>();
public void dmlInsert(List<SObject> objList)
{
this.recordsForInsert.addAll(objList);
}
public void dmlUpdate(List<SObject> objList)
{
this.recordsForUpdate.addAll(objList);
}
public void dmlDelete(List<SObject> objList)
{
this.recordsForDelete.addAll(objList);
}
public void eventPublish(List<SObject> objList)
{
this.recordsForEventPublish.addAll(objList);
}
public void emptyRecycleBin(List<SObject> objList)
{
this.recordsForRecycleBin.addAll(objList);
}
}
public class DerivedUnitOfWorkException extends Exception {}
public class FailDoingWorkException extends Exception {}
}