如何为我的apex类创建一个顶点测试类

问题描述 投票:0回答:1

这是我的第一个顶级课程,我真的不知道如何实现一个合适的测试类。我的目标是实现75%的测试覆盖率。

我根据评论进行了更新,但我只获得了70%的成绩。我没有其他想法如何改善这一点。

这是我做的:

Apex类:

 public with sharing class AccountController {

@AuraEnabled
public static List<Account> findAll() {

    User userDetails =[SELECT Id, Name, Email, Profile.Name, UserRole.Name FROM User
        where Id=:userinfo.getUserId() ];

    // Theme4t is theme that is used by mobille app for  android or iphone 
    if(((userDetails.UserRole.Name).equals('yon')|| (userDetails.UserRole.Name).equals('bon')|| (userDetails.UserRole.Name).contains('non')
        || (userDetails.UserRole.Name).contains('go')) && UserInfo.getUiTheme() != 'Theme4t'){
       return [SELECT id, name, AccountStatus__c, ShippingLatitude, ShippingLongitude, ShippingCity
        FROM Account
        WHERE ShippingLatitude != NULL AND ShippingLongitude != NULL 
        LIMIT:22000];

    }else {
       return [SELECT id, name, AccountStatus__c, ShippingLatitude, ShippingLongitude, ShippingCity
        FROM Account
        WHERE OwnerId =: UserInfo.getUserId() AND ShippingLatitude != NULL AND ShippingLongitude != NULL 
        LIMIT:5000]; 

    }
}

Apex测试类:

 @isTest 
public class AccountControllerTest 
{
static testMethod void testMethod1() 
            {
                           Account acc = new Account();
                           acc.Name='Test';

                           insert acc;
                           User userDetails =[SELECT Id, Name, Email, Profile.Name, UserRole.Name FROM User
        where Id=:userinfo.getUserId() ];


                          List<Account> lstAcc = AccountController.findAll();
                          UserRole ur =new UserRole();


                         userDetails.UserRoleId=[select Id from UserRole where Name='yon'].Id;
               System.runAs(userDetails){
                          List<Account> lstAcc1 = AccountController.findAll();  

               }

               userDetails.UserRoleId=[select Id from UserRole where Name='bon'].Id;
               System.runAs(userDetails){
                          List<Account> lstAcc2 = AccountController.findAll();  

               }

                userDetails.UserRoleId=[select Id from UserRole where Name='non'].Id;
               System.runAs(userDetails){
                          List<Account> lstAcc3 = AccountController.findAll();  

               }

               userDetails.UserRoleId=[select Id from UserRole where Name='go'].Id;
               System.runAs(userDetails){
               List<Account> lstAcc4 = AccountController.findAll();  

               }                       
}
testing salesforce apex apex-code salesforce-lightning
1个回答
1
投票

请填写下面的trailhead以了解Salesforce中的单元测试。 https://trailhead.salesforce.com/en/content/learn/modules/apex_testing/apex_testing_intro

而且,当您尝试在帐户插入后创建用户时,它将抛出混合DML错误。你需要使用system.runAs()方法。请按照以下网址使用该方法。

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_testing_tools_runas.htm

让我知道,如果仍然,你需要任何帮助。

这是您的类和测试类的代码。请遵循http://blog.shivanathd.com/2013/11/Best-Practices-Test-Class-in-Salesforce.html的最佳实践这次我将为您提供代码以了解如何创建测试类,但下次请按照我分享的步骤和文档进行操作。

public with sharing class AccountController { 
            //using a test visible variable for setting the ui theme check.
            @TestVisible static Boolean isTheme4t = UserInfo.getUiThemeDisplayed() == 'Theme4t';
            @AuraEnabled
            public static List<Account> findAll() {

                User userDetails =[SELECT Id, Name, Email, Profile.Name, UserRole.Name FROM User  where Id=:userinfo.getUserId()];

                // Theme4t is theme that is used by mobille app for  android or iphone 
                if(((userDetails.UserRole.Name).equals('yon')|| (userDetails.UserRole.Name).equals('bon')|| (userDetails.UserRole.Name).contains('non') || (userDetails.UserRole.Name).contains('go')) && !isTheme4t){
                    return [SELECT id, name, AccountStatus__c, ShippingLatitude, ShippingLongitude, ShippingCity FROM Account WHERE ShippingLatitude != NULL AND ShippingLongitude != NULL LIMIT 22000];

                }else {
                    return [SELECT id, name, AccountStatus__c, ShippingLatitude, ShippingLongitude, ShippingCity FROM Account WHERE OwnerId =: UserInfo.getUserId() AND ShippingLatitude != NULL AND ShippingLongitude != NULL LIMIT 5000]; 
                }
            }
 }




    @isTest 
    public class AccountControllerTest 
    {
        //Use setup data method to create data and query it in testmethod 
        @testSetup static void setup() {
            UserRole r = new UserRole(DeveloperName = 'yon', Name = 'yon');
            insert r;
            User u = new User(
                ProfileId = [SELECT Id FROM Profile WHERE Name = 'System Administrator'].Id,
                LastName = 'last',
                Email = '[email protected]',
                Username = '[email protected]' + System.currentTimeMillis(),
                CompanyName = 'TEST',
                Title = 'title',
                Alias = 'alias',
                TimeZoneSidKey = 'America/Los_Angeles',
                EmailEncodingKey = 'UTF-8',
                LanguageLocaleKey = 'en_US',
                LocaleSidKey = 'en_US',
                UserRoleId = r.Id
            );
            insert u;
            System.runAs(u){
                Account acc = new Account();
                acc.Name = 'Test Account';
                acc.ShippingLatitude = 75.46;
                acc.ShippingLongitude = 45.46;
                acc.AccountStatus__c = 'test';
                insert acc;
            }
        }

        static testMethod void testMethod1(){
            user u = [select Id from User where email = '[email protected]' limit 1];
            system.runAs(u){
                Test.startTest();
                List<Account> acc = [select Id,AccountStatus__c,ShippingLatitude,ShippingLongitude from Account where Name = 'Test Account'];
                List<Account> lstAcc4 = AccountController.findAll();  
                system.assert(lstAcc4.size()>0);
                Test.stopTest();

            }
        }
        static testMethod void testMethod2(){
            user u = [select Id from User where email = '[email protected]' limit 1];
            system.runAs(u){
                AccountController.isTheme4t = true;
                Test.startTest();
                List<Account> acc = [select Id,AccountStatus__c,ShippingLatitude,ShippingLongitude from Account where Name = 'Test Account'];
                List<Account> lstAcc4 = AccountController.findAll();  
                system.assert(lstAcc4.size()>0);
                Test.stopTest();

            }
        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.