You are here

function ServicesResourceUsertests::testRegisterUserLegacy in Services 6.3

Same name and namespace in other branches
  1. 7.3 tests/functional/ServicesResourceUserTests.test \ServicesResourceUsertests::testRegisterUserLegacy()

Test register method (Legacy).

TODO: To be removed in future version.

See also

http://drupal.org/node/1083242

File

tests/functional/ServicesResourceUserTests.test, line 151

Class

ServicesResourceUsertests
Run test cases for the endpoint with no authentication turned on.

Code

function testRegisterUserLegacy() {

  // Create user.
  $user = array();
  $user['name'] = $this
    ->randomName();
  $user['mail'] = $user['name'] . '@example.com';
  $user['pass'] = user_password();
  $user['status'] = 1;
  $response = $this
    ->servicesPost($this->endpoint->path . '/user/register', array(
    'account' => $user,
  ));

  //Verify logged in users cannnot create accounts
  $code = $response['code'];
  $this
    ->assertEqual($code, '401', t('Verify permission denied 401'), 'UserResource: Create (Legacy)');

  //Verify logged out state can create users
  $this
    ->drupalLogout();
  $response = $this
    ->servicesPost($this->endpoint->path . '/user/register', array(
    'account' => $user,
  ));
  $account = $response['body'];
  $this
    ->assertTrue(!empty($account['uid']), t('User has been create successfully.'), 'UserResource: Create (Legacy)');

  // Load user.
  $user_load = user_load($account['uid']);
  $this
    ->assertTrue(!empty($user_load), t('Newly created user has been loaded successfully.'), 'UserResource: Create (Legacy)');
  $this
    ->drupalLogin($this->privileged_user);
}