Activity › Forums › Salesforce® Discussions › How can I create a Chatter Free License user in a test class?
-
How can I create a Chatter Free License user in a test class?
Posted by Ravi on April 30, 2016 at 6:14 PMHow can I create a Chatter Free License user in a test class?
Ajit replied 10 years ago 2 Members · 1 Reply -
1 Reply
-
The license isn’t actually connected to the user, but depends on the profile you assign your user. If you create a user with the Chatter Free User profile, the usertype will be set to Chatter free.
5.0 APEX_CODE,DEBUG
Execute Anonymous: Profile p = [SELECT id, Name FROM Profile where name = ‘Chatter Free User’ ].get(0);
Execute Anonymous:
Execute Anonymous: User u = new User(firstname= ‘Samuel’,
Execute Anonymous: lastname=’De Rycke’,
Execute Anonymous: Alias=’Samuel’,
Execute Anonymous: email = ‘nospamplz@absi.be’,
Execute Anonymous: username= ‘nospamplz@absi.be’,
Execute Anonymous: profileId= p.id,
Execute Anonymous: emailencodingkey=’UTF-8′,
Execute Anonymous: languagelocalekey=’en_US’,
Execute Anonymous: localesidkey=’en_US’,
Execute Anonymous: timezonesidkey=’America/Los_Angeles’);
Execute Anonymous: insert u;
Execute Anonymous:
Execute Anonymous: u = [select usertype from user where id =:u.id];
Execute Anonymous:
Execute Anonymous: system.debug(‘—————————>User.UserType:’+u.usertype);
13:15:05.040 (40786000)|EXECUTION_STARTED
13:15:05.040 (40800000)|CODE_UNIT_STARTED|[EXTERNAL]|execute_anonymous_apex
13:15:05.769 (769888000)|USER_DEBUG|[17]|DEBUG|—————————>User.UserType:CsnOnly
13:15:05.820 (820554000)|CODE_UNIT_FINISHED|execute_anonymous_apex
13:15:05.820 (820567000)|EXECUTION_FINISHED
Log In to reply.