gpt4 book ai didi

triggers - Apex 触发器有效,无法获得测试通过

转载 作者:行者123 更新时间:2023-12-01 23:40:41 25 4
gpt4 key购买 nike

3小时后我又回到了这个问题,没有对任何代码进行任何更改,测试执行成功了。忽略这个问题

我编写了一个触发器,非常适合根据外部 ID 在联系人记录上设置 accountID。

我进行了一个效果很好的测试,但我向触发器添加了一些逻辑,因此它仅更新使用“默认帐户”作为帐户的联系人。现在我的测试失败了,说它没有更新帐户,即使它在保存记录时仍然按设计工作。

我错过了什么?

我添加了第 4 行

ID DefaultAccID = [select ID from Account where Name = 'Default Account'].ID;

以及第 9 行周围的 if

if (contactNew.AccountID == DefaultAccID) {
}

触发:

trigger TRG_Contact_SetHouseholdID on Contact (before update, before insert) {
Set<String> AccIDlist = new Set<String>();
ID DefaultAccID = [select ID from Account where Name = 'Default Account'].ID;

// loop through records finding thoes that need to be linked
for(Contact contactNew:Trigger.New){
if (contactNew.AccountID == DefaultAccID) {
AccIDlist.add(contactNew.RPHouseholdID__c);
}
}

Map<String, ID> AccountMap = new Map<String, ID>();

//loop needing linked and get account ID if it exist
for(Account oneAccount:[SELECT RPHouseholdID__c, ID from Account where RPHouseholdID__c IN :AccIDlist]){
AccountMap.put(oneAccount.RPHouseholdID__c, oneAccount.ID);
}

// loop through records updating the ones that need link
for(Contact contactNew:Trigger.New){
if (AccountMap.get(contactNew.RPHouseholdID__c) <> null){
contactNew.AccountID = AccountMap.get(contactNew.RPHouseholdID__c);
}
}
}

测试类:

@isTest
Private class TRG_Contact_SetHouseholdID_Test {
static TestMethod void Test0_TestInsertWithValue(){
insertTestAccounts();
Account defaultAccount = [select ID from Account where name = 'Default Account' limit 1];
Account newAccount = [select ID from Account where name = 'Camper Family' limit 1];
test.startTest();
insertTestContact(defaultAccount.ID);
test.stopTest();
Contact newContact = [select ID,AccountID from Contact where firstname = 'Happy' and lastname = 'Camper' limit 1];
System.assertEquals(newContact.AccountID, newAccount.ID, 'accountID did not get changed from default (' + defaultAccount.ID + ')');
}

private static void insertTestAccounts()
{
Account obj = new Account();
obj.Name = 'Default Account';
insert obj;
obj = new Account() ;
obj.Name = 'Camper Family';
obj.RPHouseholdID__c = '111';
insert obj;

}
private static void insertTestContact(ID defaultID)
{
Contact obj = new Contact();
obj.AccountID = defaultID;
obj.firstName = 'Happy';
obj.lastname = 'Camper';
obj.RPHouseholdID__c = '111';
insert obj;
}
}

最佳答案

稍微扩展一下 @zachelrath 的答案,从 API 版本 24.0 开始,测试方法与组织中的数据隔离(用户、记录类型等少数异常(exception)。完整列表请参阅 here)。最简单的方法是将查看所有数据指令添加到 isTest 注释中,而不是更改文件的 API 版本,如下所示:

@isTest(SeeAllData=true)
Private class TRG_Contact_SetHouseholdID_Test {
// etc

关于triggers - Apex 触发器有效,无法获得测试通过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10887191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com