Skip to content

Commit 9ca6e25

Browse files
committed
Trigger cache delete requests when thread and conversation notes are updated
1 parent 384cee0 commit 9ca6e25

File tree

5 files changed

+72
-16
lines changed

5 files changed

+72
-16
lines changed

src/integration/henvendelse-cache/classes/handlers/ConvNoteCacheHandler.cls

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
global class ConvNoteCacheHandler extends MyTriggers {
22
global override void onAfterInsert() {
3-
createHenvendelseCacheQueueable((List<Conversation_Note__c>) records);
3+
createHenvendelseCacheQueueable(
4+
(List<Conversation_Note__c>) records,
5+
false
6+
);
47
}
58
global override void onAfterUpdate(Map<Id, SObject> triggerOldMap) {
69
//TODO: Sjekk kun for felter som er relevante for cachingen
7-
createHenvendelseCacheQueueable((List<Conversation_Note__c>) records);
10+
createHenvendelseCacheQueueable(
11+
(List<Conversation_Note__c>) records,
12+
true
13+
);
814
}
915

1016
private void createHenvendelseCacheQueueable(
11-
List<Conversation_Note__c> convNoteList
17+
List<Conversation_Note__c> convNoteList,
18+
Boolean isUpdate
1219
) {
1320
Set<Id> recordIds = ConvNoteCacheFilterHelper.getRecordIdsRequiringCacheClear(
14-
convNoteList
21+
convNoteList,
22+
isUpdate
1523
);
1624
if (recordIds.isEmpty()) {
1725
return;

src/integration/henvendelse-cache/classes/helpers/ConvNoteCacheFilterHelper.cls

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
public with sharing class ConvNoteCacheFilterHelper {
22
public static Set<Id> getRecordIdsRequiringCacheClear(
3-
List<Conversation_Note__c> convNoteList
3+
List<Conversation_Note__c> convNoteList,
4+
Boolean isUpdate
45
) {
56
ModiaIntegrationUser modiaIntegrationUser = new ModiaIntegrationUser();
67
Set<Id> recordIds = new Set<Id>();
78
for (Conversation_Note__c convNote : convNoteList) {
8-
//Only cache records modified in Salesforce
9-
if (convNote.LastModifiedById != modiaIntegrationUser.UserId) {
9+
//Only cache records created in Salesforce
10+
if (
11+
convNote.LastModifiedById != modiaIntegrationUser.UserId ||
12+
isUpdate
13+
) {
1014
recordIds.add(convNote.Id);
1115
}
1216
}

src/integration/henvendelse-cache/classes/helpers/ThreadCacheFilterHelper.cls

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ public without sharing class ThreadCacheFilterHelper {
66
Set<Id> threadIds = new Set<Id>();
77

88
for (Thread__c thread : threadList) {
9-
//Only cache records created by Salesforce internal users
10-
if (thread.LastModifiedById != modiaIntegrationUser.UserId) {
11-
threadIds.add(thread.Id);
12-
}
9+
threadIds.add(thread.Id);
1310
}
14-
1511
return threadIds;
1612
}
1713

src/integration/henvendelse-cache/classes/helpers/tests/ConvNoteCacheFilterHelperTest.cls

+50-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ public class ConvNoteCacheFilterHelperTest {
2121

2222
Test.startTest();
2323
Set<Id> result = ConvNoteCacheFilterHelper.getRecordIdsRequiringCacheClear(
24-
convNotes
24+
convNotes,
25+
false //record is created
2526
);
2627
Test.stopTest();
2728

@@ -68,13 +69,60 @@ public class ConvNoteCacheFilterHelperTest {
6869

6970
Test.startTest();
7071
Set<Id> result = ConvNoteCacheFilterHelper.getRecordIdsRequiringCacheClear(
71-
convNotes
72+
convNotes,
73+
false //record is created
7274
);
7375
Test.stopTest();
7476

7577
Assert.areEqual(0, result.size());
7678
}
7779

80+
@IsTest
81+
static void shouldReturnOneRecordIdForConvNoteUpdatedByModiaIntegrationUser() {
82+
myTriggers.disable(ConvNoteCacheHandler.class);
83+
84+
Id profileId = [
85+
SELECT Id
86+
FROM Profile
87+
WHERE Name = 'System Administrator'
88+
LIMIT 1
89+
]
90+
.Id;
91+
User modiaIntegrationUser = (User) SharedTestDataFactory.createRecord(
92+
new User(
93+
username = '[email protected]',
94+
ProfileId = profileId
95+
)
96+
);
97+
98+
Account personAccount = SharedTestDataFactory.createPersonAccount();
99+
100+
System.runAs(modiaIntegrationUser) {
101+
SharedTestDataFactory.createRecord(
102+
new Conversation_Note__c(
103+
CRM_Account__c = personAccount.Id,
104+
CRM_Conversation_Note__c = 'DUMMY TEXT',
105+
CRM_Henvendelse_BehandlingskjedeId__c = '789'
106+
)
107+
);
108+
}
109+
110+
List<Conversation_Note__c> convNotes = [
111+
SELECT Id, LastModifiedById
112+
FROM Conversation_Note__c
113+
WHERE CRM_Henvendelse_BehandlingskjedeId__c = '789'
114+
];
115+
116+
Test.startTest();
117+
Set<Id> result = ConvNoteCacheFilterHelper.getRecordIdsRequiringCacheClear(
118+
convNotes,
119+
true //record is updated
120+
);
121+
Test.stopTest();
122+
123+
Assert.areEqual(1, result.size());
124+
}
125+
78126
@IsTest
79127
static void shouldReturnOneActorIdWhenOneConversationNoteId() {
80128
myTriggers.disable(ConvNoteCacheHandler.class);

src/integration/henvendelse-cache/classes/helpers/tests/ThreadCacheFilterHelperTest.cls

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class ThreadCacheFilterHelperTest {
3737
}
3838

3939
@IsTest
40-
static void shouldNotReturnThreadIdForThreadCreatedByModiaIntegrationUser() {
40+
static void shouldReturnOndThreadIdForThreadUpdatedByModiaIntegrationUser() {
4141
myTriggers.disable(MessageCacheHandler.class);
4242
myTriggers.disable(ThreadCacheHandler.class);
4343

@@ -81,7 +81,7 @@ public class ThreadCacheFilterHelperTest {
8181
);
8282
Test.stopTest();
8383

84-
Assert.areEqual(0, result.size());
84+
Assert.areEqual(1, result.size());
8585
}
8686

8787
@IsTest

0 commit comments

Comments
 (0)