You are here

function ServicesResourceUsertests::testCreateUserLegacy in Services 6.3

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

Test create method (Legacy).

TODO: To be removed in future version.

See also

http://drupal.org/node/1083242

File

tests/functional/ServicesResourceUserTests.test, line 87

Class

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

Code

function testCreateUserLegacy() {

  // 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', 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)');

  // Try to create user without email.
  $user = array();
  $user['name'] = $this
    ->randomName();
  $user['pass'] = user_password();
  $user['status'] = 1;
  $response = $this
    ->servicesPost($this->endpoint->path . '/user', array(
    'account' => $user,
  ));
  $this
    ->assertTrue(strpos($response['status'], 'E-mail address field is required') !== FALSE, t('It is not possible to create user without email.'), 'UserResource: Create (Legacy)');
}