You are here

public function UcAddressesUserRegistrationTestCase::testRegistration in Ubercart Addresses 6.2

Same name and namespace in other branches
  1. 7 tests/uc_addresses.register.test \UcAddressesUserRegistrationTestCase::testRegistration()

Register the user and assign privileges of the customerDelete account.

File

tests/uc_addresses.register.test, line 32
Test cases for registering with an address.

Class

UcAddressesUserRegistrationTestCase
Test cases for registering with an address.

Code

public function testRegistration() {

  // Allow registration by site visitors without administrator approval.
  variable_set('user_register', 1);

  // Don't require e-mail verification.
  variable_set('user_email_verification', FALSE);
  $this
    ->drupalGet('user/register');
  $address_name = $this
    ->randomName();
  $values = self::getEditAddressValues(array(
    'address',
  ), array(
    'address_name' => $address_name,
  ), 'register');
  $edit = $values['form_values'];
  $edit['name'] = $name = $this
    ->randomName();
  $edit['mail'] = $mail = $edit['name'] . '@example.com';
  $edit['pass[pass1]'] = $new_pass = $this
    ->randomName();
  $edit['pass[pass2]'] = $new_pass;
  $this
    ->drupalPost(NULL, $edit, t('Create new account'));
  $uid = db_result(db_query("SELECT uid FROM {users} WHERE name = '%s' AND mail = '%s'", $name, $mail));
  $new_user = user_load($uid);
  $this
    ->assertTrue($new_user->status, t('New account is active after registration.'));

  // Assign "full customer" privileges to this user.
  $rid = $this
    ->drupalCreateRole(array(
    'add/edit own addresses',
    'delete own addresses',
  ));
  $edit = array(
    'roles' => array(
      $rid => $rid,
    ),
  );
  $new_user = user_save($new_user, $edit);

  // Add the raw password so that we can log in as this user.
  $new_user->pass_raw = $new_pass;
  $this
    ->verbose('$new_user' . serialize($new_user), '$new_user');

  // Login the new user.
  $this
    ->drupalLogout();
  $this
    ->drupalLogin($new_user);

  // Make sure the permissions are set up right.
  if ($this
    ->checkPermissions(array(
    'add/edit own addresses',
    'delete own addresses',
  ))) {
    $this
      ->pass(t('User has assigned the right permissions.'));
  }
  else {
    $this
      ->fail(t('User has assigned the right permissions.'));
  }
  $addressBook = UcAddressesAddressBook::get($new_user->uid);
  $addresses = $addressBook
    ->getAddresses();
  $address = current($addresses);

  // Test if it has an address.
  $this
    ->viewAddressBook($new_user, TRUE);
  $this
    ->assertNoText(t('No addresses have been saved.'), t('An address has been saved.'));
  $this
    ->doAddressValuesDisplayedTests(array(
    'address_name' => $address_name,
  ));

  // Verify the user has only one address.
  $this
    ->assertEqual(count($addresses), 1, t('The user has only one address.'));
  if ($address instanceof UcAddressesAddress) {

    // Test if the address may viewed, edited or deleted.
    // This should be a default address, so it may not be deleted.
    $this
      ->doCrudTests($new_user, $address
      ->getId(), TRUE, TRUE, FALSE, array(
      'address_name' => $this
        ->randomName(),
    ));
  }
}