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 开始,测试方法与组织中的数据隔离(除了少数例外 User、RecordType 等,请参阅此处的完整列表)。与其更改文件的 API 版本,最简单的方法是将 see all data 指令添加到 isTest 注释中,如下所示:
@isTest(SeeAllData=true)
Private class TRG_Contact_SetHouseholdID_Test {
// etc
将测试类的 API 版本设置为 24.0 ---我敢打赌,您对默认帐户的初始查询是拉入名称为"默认帐户"的预先存在的记录,而不是您在测试数据中创建的默认帐户。有两种方法可以解决这个问题:
- (最简单的)将测试类更改为 API 版本 24.0
- 如果您希望保留在 API 23.0 或更低版本中,请在测试方法开始时删除名为"默认帐户"的所有帐户,然后插入测试帐户。