-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathRollupParentResetProcessorTests.cls
227 lines (196 loc) · 7.44 KB
/
RollupParentResetProcessorTests.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
@IsTest
private class RollupParentResetProcessorTests {
@TestSetup
static void setup() {
upsert new RollupSettings__c(IsEnabled__c = true);
}
@IsTest
static void shouldNotFailWhenRollupFieldNotFilterable() {
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{ new Rollup__mdt(RollupFieldOnLookupObject__c = 'Description', LookupObject__c = 'Account') },
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Exception ex;
try {
processor.runCalc();
} catch (Exception e) {
ex = e;
}
System.assertEquals(null, ex, 'Should not fail when fields are unfilterable!');
}
@IsTest
static void shouldNotFailWhenRollupMetadataIsEmpty() {
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>(),
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Exception ex;
try {
processor.runCalc();
} catch (Exception e) {
ex = e;
}
System.assertEquals(null, ex, 'Should not fail when empty list passed');
}
@IsTest
static void shouldNotFailWhenSomeRunsAreValidAndSomeAreNot() {
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{ new Rollup__mdt(RollupFieldOnLookupObject__c = 'AnnualRevenue', LookupObject__c = 'Account') },
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
processor.runCalc(); // this one is valid
processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{ new Rollup__mdt(RollupFieldOnLookupObject__c = 'Description', LookupObject__c = 'Account') },
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Exception ex;
try {
processor.runCalc();
} catch (Exception e) {
ex = e;
}
System.assertEquals(null, ex, 'Should not fail when invocations are valid then invalid');
}
@IsTest
static void correctlyQueriesEvenWhenResetFieldIsNotFilterable() {
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{ new Rollup__mdt(RollupFieldOnLookupObject__c = 'Description', LookupObject__c = 'Account') },
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Exception ex;
try {
processor.runCalc();
} catch (Exception e) {
ex = e;
}
System.assertEquals(null, ex, 'Should not fail when field is not filterable');
}
@IsTest
static void doesNotBlowUpOnWhenMultipleMetadataPresentForDifferentParents() {
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{
new Rollup__mdt(RollupFieldOnLookupObject__c = 'Description', LookupObject__c = 'Account'),
new Rollup__mdt(RollupFieldOnLookupObject__c = 'FirstName', LookupObject__c = 'Contact')
},
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Exception ex;
try {
processor.runCalc();
} catch (Exception e) {
ex = e;
}
System.assertEquals(null, ex, 'Should not fail when different parent fields present');
}
@IsTest
static void usesOverrideValueWhenApplicable() {
insert new List<SObject>{ new Account(Name = 'Account With Null'), new Contact(LastName = 'Contact With Null') };
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{
new Rollup__mdt(
RollupFieldOnLookupObject__c = 'AnnualRevenue',
LookupObject__c = 'Account',
LookupFieldOnLookupObject__c = 'Id',
FullRecalculationDefaultNumberValue__c = 0
),
new Rollup__mdt(
RollupFieldOnLookupObject__c = 'AccountNumber',
LookupObject__c = 'Account',
LookupFieldOnLookupObject__c = 'Id',
FullRecalculationDefaultStringValue__c = 'a'
)
},
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
processor.runCalc();
Account resetAccount = [SELECT AnnualRevenue, AccountNumber FROM Account];
System.assertEquals(0, resetAccount.AnnualRevenue);
System.assertEquals('a', resetAccount.AccountNumber);
}
@IsTest
static void skipsTransformWhenDisabled() {
Rollup.defaultControl = Rollup.getDefaultControl();
Rollup.defaultControl.ShouldSkipResettingParentFields__c = true;
Rollup.defaultControl.ShouldRunAs__c = RollupMetaPicklists.ShouldRunAs.Synchronous;
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{ new Rollup__mdt(RollupFieldOnLookupObject__c = 'AnnualRevenue', LookupObject__c = 'Account') },
Account.SObjectType,
'SELECT Id\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
Test.startTest();
Rollup.batch(new List<Rollup>{ processor });
Test.stopTest();
System.assertEquals(0, [SELECT COUNT() FROM AsyncApexJob WHERE ApexClass.Name = :RollupParentResetProcessor.class.getName()]);
}
@IsTest
static void shouldNotResetWhenParentAlreadyMatchesDuringFullRecalc() {
Decimal originalValue = 3;
Account acc = new Account(AnnualRevenue = originalValue, Name = 'Should Not Reset');
insert acc;
Opportunity opp = new Opportunity(AccountId = acc.Id, Amount = 100, Name = 'Will Not Match', CloseDate = System.today().addDays(2), StageName = 'A');
insert new List<Opportunity>{
new Opportunity(AccountId = acc.Id, Amount = originalValue - 1, Name = 'First Match', CloseDate = System.today().addDays(-2), StageName = 'A'),
new Opportunity(AccountId = acc.Id, Amount = originalValue - 2, Name = 'Second Match', CloseDate = System.today().addDays(-2), StageName = 'A'),
opp
};
Test.startTest();
Rollup.performBulkFullRecalc(
new List<Rollup__mdt>{
new Rollup__mdt(
RollupFieldOnCalcItem__c = 'Amount',
LookupObject__c = 'Account',
LookupFieldOnCalcItem__c = 'AccountId',
LookupFieldOnLookupObject__c = 'Id',
RollupFieldOnLookupObject__c = 'AnnualRevenue',
RollupOperation__c = 'SUM',
CalcItem__c = 'Opportunity',
IsFullRecordSet__c = true,
CalcItemWhereClause__c = 'CloseDate <= TODAY'
)
},
Rollup.InvocationPoint.FROM_FULL_RECALC_LWC.name()
);
Test.stopTest();
Account updatedAcc = [SELECT AnnualRevenue FROM Account WHERE Id = :acc.Id];
System.assertEquals(originalValue, updatedAcc.AnnualRevenue);
}
@IsTest
static void skipsMetadataForDifferentResetParents() {
insert new Account(AnnualRevenue = 5, Name = 'Should reset');
RollupParentResetProcessor processor = new RollupParentResetProcessor(
new List<Rollup__mdt>{
new Rollup__mdt(RollupFieldOnLookupObject__c = 'AnnualRevenue', LookupObject__c = 'Account', LookupFieldOnLookupObject__c = 'Id'),
new Rollup__mdt(RollupFieldOnLookupObject__c = 'FirstName', LookupObject__c = 'Contact')
},
Account.SObjectType,
'SELECT Id, AnnualRevenue\nFROM Account WHERE Id != null',
new Set<String>(),
null
);
processor.runCalc();
Assert.areEqual(null, [SELECT AnnualRevenue FROM Account].AnnualRevenue);
}
}