-1

我在 Apex 写了一个工人班。它是一个电子邮件服务扩展器,用于处理传入的电子邮件。它在我的沙盒环境中运行完美。

我已经创建了一个测试类,所以我也可以将它部署到我的生产环境中,但是在验证代码时,我得到的只有 72% 的代码经过测试。

这是我的主要课程

global class inboundEmail implements Messaging.InboundEmailHandler {

global Messaging.InboundEmailResult handleInboundEmail(Messaging.InboundEmail email, Messaging.InboundEnvelope envelope) {
    Messaging.InboundEmailResult result = new Messaging.InboundEmailresult();

Lead lead;

String [] mFromUserParams;
String [] sourceText;
String mCaseObject; 

try{
    sourceText = email.toAddresses[0].split('@');
    String [] mParams = sourceText[0].split('\\.');
**// FROM THIS LINE TO THE END - NOT COVERED**
    mFromUserParams = email.fromAddress.split('@');
    mCaseObject = mParams[0];
    if (mCaseObject == 'lead'){
        lead = new Lead();
        lead.LastName = mFromUserParams[0];
        lead.Company = email.fromAddress;
        lead.OwnerId = mParams[1];
        lead.LeadSource = mParams[2];
        lead.Email = email.fromAddress;
        lead.RequirementsDescription__c = email.subject + email.plainTextBody;

        insert lead;
        result.success = true;
    }  else if (mCaseObject == 'case'){
        result.success = true;
    }  else {
        result.success = false;
    }
}catch(Exception e){
    result.success = false;
    result.message = 'Oops, I failed.';
}
return result;
}
}

这是我的测试课

@isTest
private class inboundEmailTest {
public static testMethod void inboundEmail(){     
    // Create a new email, envelope object and Header
    Messaging.InboundEmail email = new Messaging.InboundEmail();
    Messaging.InboundEnvelope envelope = new Messaging.InboundEnvelope();
envelope.toAddress = 'lead.owner.new@cpeneac.cl.apex.sandbox.salesforce.com';
    envelope.fromAddress = 'user@acme.com';
    email.subject = 'Please contact me';
    email.fromName = 'Test From Name';
    email.plainTextBody = 'Hello, this a test email body. for testing  Bye';
    // setup controller object
    inboundEmail catcher = new inboundEmail();
    Messaging.InboundEmailResult result = catcher.handleInboundEmail(email, envelope);
}
}

根据错误消息,第 3 行的 Try/Catch 块中的所有行都没有被覆盖。(在代码中标记)。

4

3 回答 3

1

在您的测试方法中,您设置了信封.toAddress,但在您的电子邮件服务中,您将实际 InboundEmail 对象的第一个元素拆分为地址。这可能会导致 ArrayIndexOutOfBoundsException 或 NPE,因为元素 0 不存在。所以代码覆盖率会很差,因为你的测试总是跳到异常处理中,而剩下的代码未被覆盖。只需将电子邮件设置为地址,您应该有更好的覆盖范围。h9nry

于 2012-07-05T15:07:10.457 回答
0

在您的测试代码中,您能否添加一个导致潜在客户插入失败的场景?这将导致您的 catch 块中的代码执行并为您提供所需的代码测试覆盖率。

于 2012-07-05T14:25:29.093 回答
0

email.fromAddress 默认不是列表,因此只需将其设置为字符串而不是列表即可解决此问题。

于 2012-07-08T07:52:37.447 回答