0

我正在尝试在我的 catch 块中测试 DmlException,但我无法在我的单元测试中抛出 DmlException 错误。

我正在测试的代码将联系人所有者字段更新为相关帐户所有者。这是代码:

global class AccountUpdateContactOwnership implements Triggers.HandlerInterface {

Account[] newCollection = trigger.new;
Map<Id, Account> oldCollection = (Map<Id, Account>)trigger.oldMap;
Set<Id> accountIds = new Set<Id>();

global void handle() {
    Map<Id, List<Contact>> accountToContacts = getAllContactsByAccount(getAccountIds());
    updateContactOwnershipWhenAccountOwnershipChanges(accountToContacts);
}

private Set<Id> getAccountIds() {
    for(Account a : newCollection) {
        if(a.ownerId != oldCollection.get(a.Id).ownerId) accountIds.add(a.Id);
    }
    return accountIds;
}

private Map<Id, List<Contact>> getAllContactsByAccount(Set<Id> accountIds) {
    Map<Id, List<Contact>> accountToContacts = new Map<Id, List<Contact>>();
    if(!accountIds.isEmpty()) {
        List<Contact> listContacts = new List<Contact>();
        Map<Id, Contact> mapContact = new Map<Id, Contact>([select Id, AccountId, OwnerId From Contact Where accountId in: accountIds]);

        for(Contact c : mapContact.values()) {
            listContacts = accountToContacts.get(c.AccountId);
            if(listContacts == null) {
                listContacts = new List<Contact>();
                accountToContacts.put(c.accountId, listContacts);
            }
            listContacts.add(c);
        }
    }
    return accountToContacts;
}

private void updateContactOwnershipWhenAccountOwnershipChanges(Map<Id, List<Contact>> accountToContacts) {  
    if(!accountToContacts.isEmpty() && accountToContacts.size() > 0) {  
        List<Contact> contactsToUpdate = new List<Contact>();

        for(Account a : newCollection) {
            List<Contact> contacts = accountToContacts.get(a.Id);
            if(!contacts.isEmpty() && contacts.size() > 0) {
                for(Contact c : contacts) {
                    c.OwnerId = a.OwnerId;
                    contactsToUpdate.add(c);
                }
            }           
        }

        if(!contactsToUpdate.isEmpty() && contactsToUpdate.size() > 0) {
            try {
                update contactsToUpdate;
            }
            catch(DmlException e) {
                for(integer i=0;i<e.getNumDml();i++) {
                    System.debug(e.getDmlMessage(i));
                }
            }
        }
    }       
}

}

现在,在我的单元测试中,我正在尝试测试 catch 块并捕获异常。

这是我的方法:

static testMethod void accountUpdateContactOwnershipNegativeTest() {
    initialize();

    System.Dmlexception ex;

    test.startTest();   
        try {
            testAccount.OwnerId = testContact1.Id;
            update testAccount;
        }
        catch(DmlException e) {
            ex = e;
        }
    test.stopTest();

}

initialize() 设置数据(帐户和联系人)。我认为将帐户所有者设置为联系人会引发 DmlException,但它仍然可以正常处理并且不会进入 catch 块。我还尝试将帐户所有者设置为 null,但这也不起作用。如何强制 DmlException?这是我不需要尝试捕获 DmlException 的情况吗?我已经阅读了大量关于在 Salesforce 中测试异常的难度的帖子,但还没有找到解决方案。

任何人都可以帮忙吗?

4

1 回答 1

1

我猜您在测试中没有遇到异常,因为您已经在触发器的代码中处理了它(第 52-59 行)。您不需要使用 dml Exception 测试否定案例,因为您在触发器的代码上处理它。

于 2013-06-10T04:39:21.677 回答