4

我想使用系统管理员配置文件在测试类中创建一个用户。

我遇到的问题是我有 seeAllData = false 在测试类中只使用来自测试类的数据。

 List<Profile> ps = [select id, name from Profile where  name = 'System Administrator'];

这可能不会返回任何值。

我们如何创建用户的任何想法

编辑

即使使用seeAllData = false,我也可以获取查询数据。即使 SeeAllData = false ,配置文件记录是否可见?

4

2 回答 2

7

根据文档,用户和配置文件对象被认为是“用于管理您的组织的对象”,并且无论您的测试类/方法是否包含IsTest(SeeAllData=true)注释都可以访问。

可以通过这种方式访问​​的其他对象包括:

  • 组织
  • 记录类型
  • 顶点类
  • 顶点触发器
  • 顶点组件
  • 顶点页面
于 2012-07-25T12:14:47.150 回答
0
We can use the code directly to create a role and attach it to a user with system admin profile.

@isTest static void UserCreate() { 
UserRole obj=new UserRole(Name= 'ABC'); 
insert obj; 

Profile pf= [Select Id from profile where Name='System Administrator']; 

String orgId=UserInfo.getOrganizationId(); 
String dateString=String.valueof(Datetime.now()).replace(' ','').replace(':','').replace('-','') 

Integer RandomId=Integer.valueOf(Math.rint(Math.random()*1000000)); 
String uniqueName=orgId+dateString+RandomId; 

User uu=new User(firstname = 'Alan', 
lastName = 'McCarthy', 
email = uniqueName + '@test' + orgId + '.org', 
Username = uniqueName + '@test' + orgId + '.org', 
EmailEncodingKey = 'ISO-8859-1', 
Alias = uniqueName.substring(18, 23), 
TimeZoneSidKey = 'America/Los_Angeles', 
LocaleSidKey = 'en_US', 
LanguageLocaleKey = 'en_US', 
ProfileId = pf.Id, 
UserRoleId = obj.Id); 

} 
于 2018-01-02T11:36:28.940 回答