-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathfflib_SObjectSelectorTest.cls
912 lines (765 loc) · 31.9 KB
/
fflib_SObjectSelectorTest.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
private with sharing class fflib_SObjectSelectorTest
{
@TestSetup
static void testSetup(){
fflib_SecurityUtilsTest.testSetup();
}
static testMethod void testGetSObjectName()
{
AccountSelector selector = new AccountSelector();
system.assertEquals(null, selector.getSObjectFieldSetList());
system.assertEquals('Account',selector.getSObjectName());
}
static testMethod void testSelectSObjectsById()
{
// Inserting in reverse order so that we can test the order by of select
List<Account> accountList = new List<Account> {
new Account(Name='TestAccount2',AccountNumber='A2',AnnualRevenue=12345.67),
new Account(Name='TestAccount1',AccountNumber='A1',AnnualRevenue=76543.21) };
insert accountList;
Set<Id> idSet = new Set<Id>();
for(Account item : accountList)
idSet.add(item.Id);
Test.startTest();
AccountSelector selector = new AccountSelector();
List<Account> result = (List<Account>) selector.selectSObjectsById(idSet);
Test.stopTest();
system.assertEquals(2,result.size());
system.assertEquals('TestAccount2',result[0].Name);
system.assertEquals('A2',result[0].AccountNumber);
system.assertEquals(12345.67,result[0].AnnualRevenue);
system.assertEquals('TestAccount1',result[1].Name);
system.assertEquals('A1',result[1].AccountNumber);
system.assertEquals(76543.21,result[1].AnnualRevenue);
}
static testMethod void testQueryLocatorById()
{
// Inserting in reverse order so that we can test the order by of select
List<Account> accountList = new List<Account> {
new Account(Name='TestAccount2',AccountNumber='A2',AnnualRevenue=12345.67),
new Account(Name='TestAccount1',AccountNumber='A1',AnnualRevenue=76543.21) };
insert accountList;
Set<Id> idSet = new Set<Id>();
for(Account item : accountList)
idSet.add(item.Id);
Test.startTest();
AccountSelector selector = new AccountSelector();
Database.QueryLocator result = selector.queryLocatorById(idSet);
System.Iterator<SObject> iteratorResult = result.iterator();
Test.stopTest();
System.assert(true, iteratorResult.hasNext());
Account account = (Account) iteratorResult.next();
system.assertEquals('TestAccount2',account.Name);
system.assertEquals('A2',account.AccountNumber);
system.assertEquals(12345.67,account.AnnualRevenue);
System.assert(true, iteratorResult.hasNext());
account = (Account) iteratorResult.next();
system.assertEquals('TestAccount1',account.Name);
system.assertEquals('A1',account.AccountNumber);
system.assertEquals(76543.21,account.AnnualRevenue);
System.assertEquals(false, iteratorResult.hasNext());
}
static testMethod void testAssertIsAccessible()
{
List<Account> accountList = new List<Account> {
new Account(Name='TestAccount2',AccountNumber='A2',AnnualRevenue=12345.67),
new Account(Name='TestAccount1',AccountNumber='A1',AnnualRevenue=76543.21) };
insert accountList;
Set<Id> idSet = new Set<Id>();
for(Account item : accountList)
idSet.add(item.Id);
// Create a user which will not have access to the test object type
User testUser = createChatterExternalUser();
if(testUser==null)
return; // Abort the test if unable to create a user with low enough acess
System.runAs(testUser)
{
AccountSelector selector = new AccountSelector();
try
{
List<Account> result = (List<Account>) selector.selectSObjectsById(idSet);
System.assert(false,'Expected exception was not thrown');
}
catch(fflib_SObjectDomain.DomainException e)
{
System.assertEquals('Permission to access an Account denied.',e.getMessage());
}
}
}
static testMethod void testCRUDOff()
{
List<Account> accountList = new List<Account> {
new Account(Name='TestAccount2',AccountNumber='A2',AnnualRevenue=12345.67),
new Account(Name='TestAccount1',AccountNumber='A1',AnnualRevenue=76543.21) };
insert accountList;
Set<Id> idSet = new Set<Id>();
for(Account item : accountList)
idSet.add(item.Id);
// Create a user which will not have access to the test object type
User testUser = createChatterExternalUser();
if(testUser==null)
return; // Abort the test if unable to create a user with low enough acess
System.runAs(testUser)
{
AccountSelector selector = new AccountSelector(false, false, false, true);
try
{
List<Account> result = (List<Account>) selector.selectSObjectsById(idSet);
}
catch(fflib_SObjectDomain.DomainException e)
{
System.assert(false,'Did not expect an exception to be thrown');
}
}
}
static testMethod void testSOQL()
{
AccountSelector selector = new AccountSelector();
String soql = selector.newQueryFactory().toSOQL();
Pattern p = Pattern.compile('SELECT (.*) FROM Account ORDER BY AccountNumber DESC NULLS FIRST , AnnualRevenue ASC NULLS LAST ');
Matcher m = p.matcher(soql);
System.assert(m.matches(), 'Generated SOQL does not match expected pattern. Here is the generated SOQL: ' + soql);
System.assertEquals(1, m.groupCount(), 'Unexpected number of groups captured.');
String fieldListString = m.group(1);
assertFieldListString(fieldListString, null);
}
static testMethod void testSOQL_defaultSorting()
{
DefaultSortingAccountSelector selector = new DefaultSortingAccountSelector(false);
String soql = selector.newQueryFactory().toSOQL();
Pattern p = Pattern.compile(String.format('SELECT (.*) FROM Account ORDER BY {0} ASC NULLS FIRST ',
new List<String>{selector.getOrderBy()}));
Matcher m = p.matcher(soql);
System.assert(m.matches(), 'Generated SOQL does not match expected pattern. Here is the generated SOQL: ' + soql);
System.assertEquals(1, m.groupCount(), 'Unexpected number of groups captured.');
String fieldListString = m.group(1);
assertFieldListString(fieldListString, null);
}
static testMethod void testDefaultConfig()
{
AccountSelector selector = new AccountSelector();
System.assertEquals(false, selector.isEnforcingFLS());
System.assertEquals(true, selector.isEnforcingCRUD());
System.assertEquals(false, selector.isIncludeFieldSetFields());
System.assertEquals(fflib_SObjectSelector.DataAccess.LEGACY, selector.getDataAccess());
System.assertEquals('Account', selector.getSObjectName());
System.assertEquals(Account.SObjectType, selector.getSObjectType2());
}
private static void assertFieldListString(String fieldListString, String prefix) {
String prefixString = (!String.isBlank(prefix)) ? prefix + '.' : '';
List<String> fieldList = fieldListString.split(',{1}\\s?');
System.assertEquals(UserInfo.isMultiCurrencyOrganization() ? 5 : 4, fieldList.size());
Set<String> fieldSet = new Set<String>();
fieldSet.addAll(fieldList);
String expected = prefixString + 'AccountNumber';
System.assert(fieldSet.contains(expected), expected + ' missing from field list string: ' + fieldListString);
expected = prefixString + 'AnnualRevenue';
System.assert(fieldSet.contains(expected), expected + ' missing from field list string: ' + fieldListString);
expected = prefixString + 'Id';
System.assert(fieldSet.contains(expected), expected + ' missing from field list string: ' + fieldListString);
expected = prefixString + 'Name';
System.assert(fieldSet.contains(expected), expected + ' missing from field list string: ' + fieldListString);
if (UserInfo.isMultiCurrencyOrganization()) {
expected = prefixString + 'CurrencyIsoCode';
System.assert(fieldSet.contains(expected), expected + ' missing from field list string: ' + fieldListString);
}
}
@IsTest
static void testWithoutSorting()
{
//Given
AccountSelector selector = new AccountSelector(false, false, false, false);
fflib_QueryFactory qf = selector.newQueryFactory();
Set<String> expectedSelectFields = new Set<String>{ 'Name', 'Id', 'AccountNumber', 'AnnualRevenue' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('CurrencyIsoCode');
}
//When
String soql = qf.toSOQL();
//Then
Pattern soqlPattern = Pattern.compile('SELECT (.*) FROM Account ORDER BY AccountNumber DESC NULLS FIRST , AnnualRevenue ASC NULLS LAST ');
Matcher soqlMatcher = soqlPattern.matcher(soql);
soqlMatcher.matches();
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
// Test case of ordering with NULLS LAST option passed into the ordering method
@IsTest
static void testWithOrderingNullsLast()
{
// Build the selector to test with
AccountSelector selector = new AccountSelector(false, false, false, false);
fflib_QueryFactory qf = selector.newQueryFactory();
// Add in the expected fields
Set<String> expectedSelectFields = new Set<String>{ 'Name', 'Id', 'AccountNumber', 'AnnualRevenue' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('CurrencyIsoCode');
}
// Generate the SOQL string
String soql = qf.toSOQL();
// Assert that the
Pattern soqlPattern = Pattern.compile('SELECT (.*) FROM Account ORDER BY AccountNumber DESC NULLS FIRST , AnnualRevenue ASC NULLS LAST ');
Matcher soqlMatcher = soqlPattern.matcher(soql);
system.assert(soqlMatcher.matches(), 'The SOQL should have that expected.');
}
@IsTest
static void testConfigureQueryFactoryFields() {
//Given
Testfflib_UserSObjectSelector selector = new Testfflib_UserSObjectSelector();
fflib_QueryFactory qf = new fflib_QueryFactory(Account.SObjectType);
Set<String> expectedSelectFields = new Set<String>{ 'Owner.Name', 'Owner.Id', 'Owner.Username', 'Owner.LastLoginDate' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('Owner.CurrencyIsoCode');
}
//When
selector.configureQueryFactoryFields(qf, 'Owner');
//Then
String soql = qf.toSOQL();
Pattern soqlPattern = Pattern.compile('SELECT (.*) FROM Account');
Matcher soqlMatcher = soqlPattern.matcher(soql);
System.assert(soqlMatcher.matches(), 'Generated SOQL does not match expected pattern. Here is the generated SOQL: ' + soql);
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void testAddQueryFactorySubselect() {
//Given
Testfflib_UserSObjectSelector selector = new Testfflib_UserSObjectSelector();
fflib_QueryFactory qf = new fflib_QueryFactory(Account.SObjectType);
Set<String> expectedSelectFields = new Set<String>{ 'Name', 'Id', 'Username', 'LastLoginDate' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('CurrencyIsoCode');
}
//When
selector.addQueryFactorySubselect(qf);
//Then
String soql = qf.toSOQL();
Pattern soqlPattern = Pattern.compile(String.format('SELECT Id, \\(SELECT (.*) FROM Users ORDER BY {0} ASC NULLS FIRST \\) +FROM Account',new List<String>{selector.getOrderBy()}));
Matcher soqlMatcher = soqlPattern.matcher(soql);
System.assert(soqlMatcher.matches(), 'Generated SOQL does not match expected pattern. Here is the generated SOQL: ' + soql);
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void testAddQueryFactorySubselect2() {
//Given
Testfflib_UserSObjectSelector selector = new Testfflib_UserSObjectSelector();
fflib_QueryFactory qf = new fflib_QueryFactory(Account.SObjectType);
Set<String> expectedSelectFields = new Set<String>{ 'Name', 'Id', 'Username', 'LastLoginDate' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('CurrencyIsoCode');
}
//When
selector.addQueryFactorySubselect(qf, 'Users');
//Then
String soql = qf.toSOQL();
Pattern soqlPattern = Pattern.compile(String.format('SELECT Id, \\(SELECT (.*) FROM Users ORDER BY {0} ASC NULLS FIRST \\) +FROM Account',
new List<String>{selector.getOrderBy()}));
Matcher soqlMatcher = soqlPattern.matcher(soql);
System.assert(soqlMatcher.matches(), 'Generated SOQL does not match expected pattern. Here is the generated SOQL: ' + soql);
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void testGetFieldListString() {
//Given
Testfflib_UserSObjectSelector selector = new Testfflib_UserSObjectSelector();
fflib_QueryFactory qf = new fflib_QueryFactory(Account.SObjectType);
Set<String> expectedSelectFields = new Set<String>{ 'Name', 'Id', 'Username', 'LastLoginDate' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('CurrencyIsoCode');
}
//When
String fieldListString = selector.getFieldListString();
//Then
List<String> actualSelectFields = fieldListString.deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void testGetRelatedFieldListString() {
//Given
Testfflib_UserSObjectSelector selector = new Testfflib_UserSObjectSelector();
Set<String> expectedSelectFields = new Set<String>{ 'Owner.Name', 'Owner.Id', 'Owner.Username', 'Owner.LastLoginDate' };
if (UserInfo.isMultiCurrencyOrganization())
{
expectedSelectFields.add('Owner.CurrencyIsoCode');
}
//When
String fieldListString = selector.getRelatedFieldListString('Owner');
//Then
List<String> actualSelectFields = fieldListString.deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void toSOQL_When_UserModeAndUserCannnotReadObject_Expect_QueryException(){
AccessLevelOpportunitySelector sel = new AccessLevelOpportunitySelector();
User u = getMinimumAccessUser();
System.runAs(u){
try{
System.debug(sel.newQueryFactory().toSOQL());
sel.selectSObjectsById(new Set<Id>{fflib_IDGenerator.generate(Opportunity.SObjectType)});
Assert.fail('Expected a QueryException due to read only user not having access to Opportunity');
}
catch(QueryException qe){
//If you don't have Read access to the Lead object, the Name field is inaccessible -- so that's what we're verifying
Assert.isNotNull(qe.getInaccessibleFields(),'Expected a Map of inaccessible objects; got null');
Set<String> inaccessibleFields = qe.getInaccessibleFields().get('Opportunity');
Assert.isNotNull(inaccessibleFields,'Expected a Set of inaccessible fields on the Opportunity object; got null');
Assert.isTrue(inaccessibleFields.contains('Name'),'Expected Name to be an inaccessible field on Opportunity');
}
}
}
@IsTest
static void toSOQL_When_SystemModeAndUserCannnotReadObject_Expect_Success(){
AccessLevelOpportunitySelector sel = new AccessLevelOpportunitySelector(fflib_SObjectSelector.DataAccess.SYSTEM_MODE);
User u = getMinimumAccessUser();
System.runAs(u){
sel.selectSObjectsById(new Set<Id>{fflib_IDGenerator.generate(Opportunity.SObjectType)});
}
}
@IsTest
static void toSOQL_When_UserModeAndUserCannnotReadField_Expect_QueryException(){
AccessLevelAccountSelector sel = new AccessLevelAccountSelector();
//Account has Read access by the limited read only user but no FLS access
User u = getMinimumAccessUser();
System.runAs(u){
try{
System.debug(sel.newQueryFactory().toSOQL());
sel.selectSObjectsById(new Set<Id>{fflib_IDGenerator.generate(Account.SObjectType)});
Assert.fail('Expected a QueryException due to read only user not having access to AnnualRevenue');
}
catch(QueryException qe){
//If you don't have Read access to the Lead object, the Name field is inaccessible -- so that's what we're verifying
Assert.isNotNull(qe.getInaccessibleFields(),'Expected a Map of inaccessible objects; got null');
Set<String> inaccessibleFields = qe.getInaccessibleFields().get('Account');
Assert.isNotNull(inaccessibleFields,'Expected a Set of inaccessible fields on the Account object; got null');
Assert.isFalse(inaccessibleFields.contains('Name'),'Expected Name to be an accessible field on Account');
Assert.isTrue(inaccessibleFields.contains('AnnualRevenue'),'Expected AnnualRevenue to be an inaccessible field on Account');
}
}
}
@IsTest
static void toSOQL_When_SystemModeAndUserCannnotReadField_Expect_Success(){
AccessLevelAccountSelector sel = new AccessLevelAccountSelector(fflib_SObjectSelector.DataAccess.SYSTEM_MODE);
//Account has Read access by the limited read only user but no FLS access
User u = getMinimumAccessUser();
System.runAs(u){
sel.selectSObjectsById(new Set<Id>{fflib_IDGenerator.generate(Account.SObjectType)});
}
}
@IsTest
static void toSOQL_When_SystemModeAndParentRelationshipAndDuplicateFields_Expect_WellFormedSOQL(){
AccessLevelOpportunitySelector sel = new AccessLevelOpportunitySelector(fflib_SObjectSelector.DataAccess.SYSTEM_MODE);
String soql = sel.createSelectAllWithAccountSOQL();
String expected = String.format('SELECT name, id, amount, closedate, (currencyisocode, )?account\\.name, account\\.billingpostalcode(, currencyisocode)? FROM Opportunity WITH SYSTEM_MODE ORDER BY {0} ASC NULLS FIRST ',
new List<String>{sel.getOrderBy()});
Pattern soqlPattern = Pattern.compile(expected);
Matcher soqlMatcher = soqlPattern.matcher(soql);
System.assert(soqlMatcher.matches(),'Expected: ' + expected + ' Actual:' + soql);
}
@IsTest
static void toSOQL_When_SystemModeAndChildRelationship_Expect_WellFormedSOQL(){
AccessLevelAccountSelector sel = new AccessLevelAccountSelector(fflib_SObjectSelector.DataAccess.SYSTEM_MODE);
String soql = sel.createSelectAccountWithOpportunitiesSOQL();
String expected = String.format('SELECT name, id, annualrevenue, accountnumber, (currencyisocode, )?\\(SELECT name, id, amount, closedate(, currencyisocode)? FROM Opportunities ORDER BY {0} ASC NULLS FIRST \\) FROM Account WITH SYSTEM_MODE ORDER BY {0} ASC NULLS FIRST ',
new List<String>{sel.getOrderBy()});
Pattern soqlPattern = Pattern.compile(expected);
Matcher soqlMatcher = soqlPattern.matcher(soql);
System.assert(soqlMatcher.matches(),'Expected: ' + expected + ' Actual:' + soql);
}
private class AccountSelector extends fflib_SObjectSelector
{
public AccountSelector()
{
super();
}
public AccountSelector(Boolean includeFieldSetFields, Boolean enforceCRUD, Boolean enforceFLS, Boolean sortSelectFields)
{
super(includeFieldSetFields, enforceCRUD, enforceFLS, sortSelectFields);
}
public List<Schema.SObjectField> getSObjectFieldList()
{
return new List<Schema.SObjectField> {
Account.Name,
Account.Id,
Account.AccountNumber,
Account.AnnualRevenue
};
}
public Schema.SObjectType getSObjectType()
{
return Account.sObjectType;
}
public override String getOrderBy()
{
return 'AccountNumber DESC, AnnualRevenue ASC NULLS LAST';
}
}
private class Testfflib_UserSObjectSelector extends fflib_SObjectSelector
{
public Testfflib_UserSObjectSelector()
{
super();
}
public List<Schema.SObjectField> getSObjectFieldList()
{
return new List<Schema.SObjectField> {
User.Name,
User.Id,
User.Username,
User.LastLoginDate
};
}
public Schema.SObjectType getSObjectType()
{
return User.SObjectType;
}
}
private class DefaultSortingAccountSelector extends fflib_SObjectSelector
{
public DefaultSortingAccountSelector(Boolean includeFieldSetFields)
{
super(includeFieldSetFields);
}
public List<Schema.SObjectField> getSObjectFieldList()
{
return new List<Schema.SObjectField> {
Account.Name,
Account.Id,
Account.AccountNumber,
Account.AnnualRevenue
};
}
public Schema.SObjectType getSObjectType()
{
return Account.sObjectType;
}
}
private class AccessLevelOpportunitySelector extends fflib_SObjectSelector{
public AccessLevelOpportunitySelector(){
this(DataAccess.USER_MODE);
}
public AccessLevelOpportunitySelector(DataAccess access){
super(false, access);
}
public Schema.SObjectType getSObjectType(){
return Opportunity.sObjectType;
}
public List<Schema.SObjectField> getSObjectFieldList(){
return new List<Schema.SObjectField> {
Opportunity.Name,
Opportunity.Id,
Opportunity.Amount,
Opportunity.CloseDate
};
}
@TestVisible
private String createSelectAllWithAccountSOQL(){
fflib_QueryFactory qf = newQueryFactory();
qf.selectField('AMOUNT'); //Duplicate (as String)
qf.selectField('amount'); //Duplicate (as String)
qf.selectField(Opportunity.Amount); //Duplicate (as SObjectField)
//Parent Relationship
qf.selectFields(new Set<String>{
'Account.Name',
'Account.BillingPostalCode'
});
qf.selectField('Account.BILLINGPOSTALCODE'); //Duplicate field (as String)
return qf.toSOQL();
}
public List<Opportunity> selectAllWithAccount(){
return Database.query(createSelectAllWithAccountSOQL());
}
}
private class AccessLevelAccountSelector extends fflib_SObjectSelector{
public AccessLevelAccountSelector(){
this(DataAccess.USER_MODE);
}
public AccessLevelAccountSelector(DataAccess access){
super(false, access);
}
public Schema.SObjectType getSObjectType(){
return Account.sObjectType;
}
public List<Schema.SObjectField> getSObjectFieldList(){
return new List<Schema.SObjectField> {
Account.Name,
Account.Id,
Account.AnnualRevenue,
Account.AccountNumber
};
}
@TestVisible
private String createSelectAccountWithOpportunitiesSOQL(){
AccessLevelOpportunitySelector oSel = new AccessLevelOpportunitySelector(getDataAccess());
fflib_QueryFactory qf = newQueryFactory();
oSel.addQueryFactorySubselect(qf,'Opportunities');
return qf.toSOQL();
}
public List<Account> selectAccountWithOpportunities(){
return Database.query(createSelectAccountWithOpportunitiesSOQL());
}
}
private class ContractSelector extends fflib_SObjectSelector{
public ContractSelector(){
super(false,DataAccess.SYSTEM_MODE);
}
public Schema.SObjectType getSObjectType(){
return Contract.SObjectType;
}
public List<Schema.SObjectField> getSObjectFieldList(){
return new List<Schema.SObjectField> {
Contract.Id,
Contract.ContractNumber
};
}
}
private class OrderSelector extends fflib_SObjectSelector{
public OrderSelector(){
super(false,DataAccess.SYSTEM_MODE);
}
public Schema.SObjectType getSObjectType(){
return Order.SObjectType;
}
public List<Schema.SObjectField> getSObjectFieldList(){
return new List<Schema.SObjectField> {
Order.Id,
Order.OrderNumber
};
}
}
private class TaskSelector extends fflib_SObjectSelector{
public TaskSelector(){
super(false,DataAccess.SYSTEM_MODE);
}
public Schema.SObjectType getSObjectType(){
return Task.SObjectType;
}
public List<Schema.SObjectField> getSObjectFieldList(){
return new List<Schema.SObjectField> {
Task.Id,
Task.Subject
};
}
}
/**
* Create test user
**/
private static User createChatterExternalUser()
{
// Can only proceed with test if we have a suitable profile - Chatter External license has no access to Opportunity
List<Profile> testProfiles = [SELECT Id FROM Profile WHERE UserLicense.Name='Chatter External' LIMIT 1];
if(testProfiles.size()!=1)
return null;
// Can only proceed with test if we can successfully insert a test user
String testUsername = System.now().format('yyyyMMddhhmmss') + '@testorg.com';
User testUser = new User(Alias = 'test1', Email='[email protected]', EmailEncodingKey='UTF-8', LastName='Testing', LanguageLocaleKey='en_US', LocaleSidKey='en_US', ProfileId = testProfiles[0].Id, TimeZoneSidKey='America/Los_Angeles', UserName=testUsername);
try {
insert testUser;
} catch (Exception e) {
return null;
}
return testUser;
}
private static User getMinimumAccessUser(){
return fflib_SecurityUtilsTest.setupTestUser(true);
}
@IsTest
static void toSOQL_When_PolymorphicSelect_Expect_RelatedType() {
//Given
CampaignMemberSelector cmSelector = new CampaignMemberSelector(fflib_SObjectSelector.DataAccess.LEGACY);
fflib_QueryFactory qf = cmSelector.newQueryFactory();
new LeadSelector().configureQueryFactoryFields(qf, 'Lead');
new UserSelector().configureQueryFactoryFields(qf, 'Lead.Owner');
Set<String> expectedSelectFields = new Set<String>{
'Id', 'Status', 'Lead.Id', 'Lead.OwnerId', 'Lead.Owner.Id', 'Lead.Owner.UserRoleId'
};
if (UserInfo.isMultiCurrencyOrganization()) {
expectedSelectFields.add('CurrencyIsoCode');
expectedSelectFields.add('Lead.CurrencyIsoCode');
expectedSelectFields.add('Lead.Owner.CurrencyIsoCode'); // Because the Selector is for User; Group would not have
}
//When
String soql = qf.toSOQL();
//Then
Pattern soqlPattern = Pattern.compile(String.format('SELECT (.*) FROM CampaignMember ORDER BY {0} ASC NULLS FIRST ',
new List<String>{cmSelector.getOrderBy()}));
Matcher soqlMatcher = soqlPattern.matcher(soql);
soqlMatcher.matches();
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
System.assertEquals(expectedSelectFields, new Set<String>(actualSelectFields));
}
@IsTest
static void toSOQL_When_PolymorphicSelectInMulticurrency_Expect_RelatedType() {
//Given
CampaignMemberSelector cmSelector = new CampaignMemberSelector(fflib_SObjectSelector.DataAccess.LEGACY);
fflib_QueryFactory qf = cmSelector.newQueryFactory();
new LeadSelector().configureQueryFactoryFields(qf, 'Lead');
new GroupSelector().configureQueryFactoryFields(qf, 'Lead.Owner');
Set<String> expectedSelectFields = new Set<String>{
'Id', 'Status', 'Lead.Id', 'Lead.OwnerId', 'Lead.Owner.Id'
};
Set<String> unexpectedSelectFields = new Set<String>();
if (UserInfo.isMultiCurrencyOrganization()) {
expectedSelectFields.add('CurrencyIsoCode');
expectedSelectFields.add('Lead.CurrencyIsoCode');
unexpectedSelectFields.add('Lead.Owner.CurrencyIsoCode'); // Because Group does NOT have CurrencyIsoCode
}
//When
String soql = qf.toSOQL();
System.debug(soql);
//Then
Pattern soqlPattern = Pattern.compile('SELECT (.*) FROM CampaignMember ORDER BY CreatedDate ASC NULLS FIRST ');
Matcher soqlMatcher = soqlPattern.matcher(soql);
soqlMatcher.matches();
List<String> actualSelectFields = soqlMatcher.group(1).deleteWhiteSpace().split(',');
Set<String> actualSelectFieldsSet = new Set<String>(actualSelectFields);
Assert.areEqual(expectedSelectFields, actualSelectFieldsSet);
if (unexpectedSelectFields.size() > 0) {
Assert.isFalse(
actualSelectFieldsSet.containsAll(unexpectedSelectFields),
String.format('The fields {0} were not expected on actualSelectFieldsSet {1}', new List<Set<String>>{unexpectedSelectFields, actualSelectFieldsSet})
);
}
}
@IsTest
static void toSOQL_When_SystemModePolymorphicSelect_Expect_RelatedType() {
CampaignMemberSelector cmSelector = new CampaignMemberSelector(fflib_SObjectSelector.DataAccess.SYSTEM_MODE);
fflib_QueryFactory qf = cmSelector.newQueryFactory();
new LeadSelector().configureQueryFactoryFields(qf, 'Lead');
new UserSelector().configureQueryFactoryFields(qf, 'Lead.Owner');
List<String> expectedSelectFields = new List<String>();
expectedSelectFields.add('id');
expectedSelectFields.add('status');
if (UserInfo.isMultiCurrencyOrganization()) {
expectedSelectFields.add('currencyisocode');
}
expectedSelectFields.add('lead.ownerid');
expectedSelectFields.add('lead.id');
if (UserInfo.isMultiCurrencyOrganization()) {
expectedSelectFields.add('lead.currencyisocode');
}
expectedSelectFields.add('lead.owner.userroleid');
expectedSelectFields.add('lead.owner.id');
if (UserInfo.isMultiCurrencyOrganization()) {
expectedSelectFields.add('lead.owner.currencyisocode');
}
String expectedSOQL = String.format('SELECT ' + String.join(expectedSelectFields,', ') + ' FROM CampaignMember WITH SYSTEM_MODE ORDER BY {0} ASC NULLS FIRST ',
new List<String>{cmSelector.getOrderBy()});
//When
String actualSOQL = qf.toSOQL();
//Then
System.assertEquals(expectedSOQL, actualSOQL);
}
@IsTest
static void toSOQL_When_GreatGreatGrandchildRelationships_Expect_WelformedSOQL(){
AccessLevelAccountSelector aSel = new AccessLevelAccountSelector();
fflib_QueryFactory aQF = aSel.newQueryFactory();
ContractSelector cSel = new ContractSelector();
fflib_QueryFactory cQF = cSel.addQueryFactorySubselect(aQF);
AccessLevelOpportunitySelector oppSel = new AccessLevelOpportunitySelector();
fflib_QueryFactory oppQF = oppSel.addQueryFactorySubselect(cQF);
OrderSelector orderSel = new OrderSelector();
fflib_QueryFactory orderQF = orderSel.addQueryFactorySubselect(oppQF);
TaskSelector tSel = new TaskSelector();
fflib_QueryFactory tQF = tSel.addQueryFactorySubselect(orderQF);
String expected
= 'SELECT name, id, annualrevenue, accountnumber, '
+ '(SELECT id, contractnumber, '
+ '(SELECT name, id, amount, closedate, '
+ '(SELECT id, ordernumber, '
+ '(SELECT id, subject FROM Tasks ORDER BY Subject ASC NULLS FIRST ) '
+ 'FROM Orders ORDER BY OrderNumber ASC NULLS FIRST ) '
+ 'FROM Opportunities ORDER BY Name ASC NULLS FIRST ) '
+ 'FROM Contracts ORDER BY ContractNumber ASC NULLS FIRST ) '
+ 'FROM Account WITH USER_MODE ORDER BY Name ASC NULLS FIRST ';
Assert.areEqual(expected,aQF.toSOQL());
}
private class CampaignMemberSelector extends fflib_SObjectSelector {
public CampaignMemberSelector(DataAccess access) {
super(false, access);
}
public List<Schema.SObjectField> getSObjectFieldList() {
return new List<Schema.SObjectField>{
CampaignMember.Id,
CampaignMember.Status
};
}
public Schema.SObjectType getSObjectType() {
return CampaignMember.sObjectType;
}
}
private class UserSelector extends fflib_SObjectSelector {
public UserSelector() {
super();
}
public List<Schema.SObjectField> getSObjectFieldList() {
return new List<Schema.SObjectField>{
User.UserRoleId,
User.Id
};
}
public Schema.SObjectType getSObjectType() {
return User.sObjectType;
}
}
private class GroupSelector extends fflib_SObjectSelector {
public GroupSelector() {
super();
}
public List<Schema.SObjectField> getSObjectFieldList() {
return new List<Schema.SObjectField>{
Group.Id
};
}
public Schema.SObjectType getSObjectType() {
return Group.sObjectType;
}
}
private class LeadSelector extends fflib_SObjectSelector {
public LeadSelector() {
super();
}
public List<Schema.SObjectField> getSObjectFieldList() {
return new List<Schema.SObjectField>{
Lead.OwnerId,
Lead.Id
};
}
public Schema.SObjectType getSObjectType() {
return Lead.sObjectType;
}
}
}