class PrivatemsgTestCase in Privatemsg 7
Same name and namespace in other branches
- 6.2 privatemsg.test \PrivatemsgTestCase
- 6 privatemsg.test \PrivatemsgTestCase
- 7.2 privatemsg.test \PrivatemsgTestCase
Hierarchy
- class \DrupalTestCase
- class \DrupalWebTestCase
- class \PrivatemsgBaseTestCase
- class \PrivatemsgTestCase
- class \PrivatemsgBaseTestCase
- class \DrupalWebTestCase
Expanded class hierarchy of PrivatemsgTestCase
File
- ./
privatemsg.test, line 18 - Test file for privatemsg.module
View source
class PrivatemsgTestCase extends PrivatemsgBaseTestCase {
/**
* Implements getInfo().
*/
public static function getInfo() {
return array(
// 'name' should start with what is being tested (menu item) followed by what about it
// is being tested (creation/deletion).
'name' => t('Privatemsg functionality.'),
// 'description' should be one or more complete sentences that provide more details on what
// exactly is being tested.
'description' => t('Test sending, receiving, listing, deleting messages and other features.'),
// 'group' should be a logical grouping of test cases, like a category. In most cases, that
// is the module the test case is for.
'group' => t('Privatemsg'),
);
}
/**
* Implements setUp().
*/
function setUp() {
parent::setUp('privatemsg');
// Create the full html format.
$full_html_format = array(
'format' => 'full_html',
'name' => 'Full HTML',
'weight' => 1,
'filters' => array(
// URL filter.
'filter_url' => array(
'weight' => 0,
'status' => 1,
),
// Line break filter.
'filter_autop' => array(
'weight' => 1,
'status' => 1,
),
// HTML corrector filter.
'filter_htmlcorrector' => array(
'weight' => 10,
'status' => 1,
),
),
);
$full_html_format = (object) $full_html_format;
filter_format_save($full_html_format);
// Refresh permissions.
$this
->checkPermissions(array(), TRUE);
}
/**
* Test user access to /messages
* Create user with no 'read privatemsg' permission. Try to access mailbox and see if it gives access denied error
* Create user with 'read privatemsg' permission. Try to access mailbox and see if it gives allows access
*/
function testPrivatemsgReadPrivatemsgPermission() {
$user_no_read_msg = $this
->drupalCreateUser();
// set up user with default permissions (meaning: no read privatemsg permission
$author = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
$recipient = $this
->drupalCreateUser(array(
'read privatemsg',
));
$no_recipient = $this
->drupalCreateUser(array(
'read privatemsg',
));
$subject = $this
->randomName(20);
$body = $this
->randomName(50);
// Make sure that $no_recipient is involved in another thread to assert that
// no unrelated messages are displayed.
// @see https://drupal.org/node/2033161
$unrelated = privatemsg_new_thread(array(
$no_recipient,
), $subject, $body, array(
'author' => $author,
));
$response = privatemsg_new_thread(array(
$recipient,
), $subject, $body, array(
'author' => $author,
));
$this
->drupalLogin($user_no_read_msg);
$this
->drupalGet('messages');
$this
->assertResponse(403, t('HTTP Response 403: Access to mailbox was blocked to user without "<em>read privatemsg</em>" permission'));
$this
->drupalLogin($no_recipient);
$this
->drupalGet('messages');
$this
->assertResponse(200, t('HTTP Response 200: Access to mailbox was authorized to user with "<em>read privatemsg</em>" permission'));
$this
->drupalGet('messages/view/' . $response['message']->thread_id);
$this
->assertResponse(403, t('HTTP Response 403: Access to thread is blocked for non-recipients.'));
$this
->drupalLogin($recipient);
$this
->drupalGet('messages/view/' . $response['message']->thread_id);
$this
->assertText($subject, t('Access to thread for recipient allowed.'));
$this
->drupalGet('messages/view/' . $response['message']->thread_id + 1);
$this
->assertResponse(404, t('Non-existing thread lead to HTTP Response 404.'));
}
/**
* Test user access to /messages/new
* Create user with no 'write privatemsg' permission. Try to access Write New Message page and see if it gives access denied error
* Create user with 'write privatemsg' permission. Try to access Write New Message page and see if it gives allows access
*/
function testPrivatemsgWritePrivatemsgPermission() {
$user_no_write_msg = $this
->drupalCreateUser();
// set up user with default permissions (meaning: no read privatemsg permission
$this
->drupalLogin($user_no_write_msg);
$this
->drupalGet('messages/new');
$this
->assertResponse(403, t('HTTP Response 403: Access to Write New Message page was blocked to user without "<em>write privatemsg</em>" permission'));
$user_write_msg = $this
->drupalCreateUser(array(
'write privatemsg',
));
// set up user with write privatemsg permissions
$this
->drupalLogin($user_write_msg);
$this
->drupalGet('messages/new');
$this
->assertResponse(200, t('HTTP Response 200: Access to Write New Message page was authorized to user with "<em>write privatemsg</em>" permission'));
}
function testPaging() {
$author = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
$recipient = $this
->drupalCreateUser(array(
'read privatemsg',
));
// Set lower values so that we don't need to generate 100's of messages.
variable_set('privatemsg_view_default_amount', 5);
variable_set('privatemsg_view_max_amount', 10);
$subject_single = $this
->randomName(20);
$subject = $this
->randomName(20);
$bodies = array();
for ($i = 0; $i < 24; $i++) {
$bodies[$i] = $this
->randomName(100);
}
privatemsg_new_thread(array(
$recipient,
), $subject_single, $bodies[23], array(
'author' => $author,
));
$thread = privatemsg_new_thread(array(
$recipient,
), $subject, $bodies[0], array(
'author' => $author,
));
for ($i = 1; $i < 23; $i++) {
privatemsg_reply($thread['message']->thread_id, $bodies[$i], array(
'author' => $author,
));
}
$this
->drupalLogin($recipient);
$this
->drupalGet('messages');
$this
->clickLink($subject_single);
$this
->assertNoText(t('Displaying messages 1 - 1 of 1'), t('Pager is displayed'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
$this
->assertNoText(t('<<'), t('Older messages link not displayed.'));
$this
->drupalGet('messages');
$this
->clickLink($subject);
// Verify that only the last 10 messages are displayed.
$this
->assertText(t('<< Displaying messages 14 - 23 of 23'), t('Pager is displayed'));
$this
->assertNoText($bodies[0], t('First message is not displayed.'));
$this
->assertNoText($bodies[12], t('Hidden message is not displayed.'));
$this
->assertText($bodies[13], t('Message is displayed.'));
$this
->assertText($bodies[22], t('Message is displayed.'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
variable_set('privatemsg_view_use_max_as_default', TRUE);
$this
->drupalGet('messages');
$this
->clickLink($subject);
// Now with separate default value.
// Verify that only the last 5 messages are displayed.
$this
->assertText(t('<< Displaying messages 19 - 23 of 23'), t('Pager is displayed'));
$this
->assertNoText($bodies[0], t('First message is not displayed.'));
$this
->assertNoText($bodies[17], t('Hidden message is not displayed.'));
$this
->assertText($bodies[18], t('Message is displayed.'));
$this
->assertText($bodies[22], t('Message is displayed.'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
// Load older messages and verify again.
$this
->clickLink(t('<<'));
$this
->assertText(t('<< Displaying messages 9 - 18 of 23 >>'), t('Pager is displayed'));
$this
->assertNoText($bodies[0], t('First message is not displayed.'));
$this
->assertNoText($bodies[7], t('Hidden message is not displayed.'));
$this
->assertText($bodies[8], t('Message is displayed.'));
$this
->assertText($bodies[17], t('Message is displayed.'));
$this
->assertNoText($bodies[22], t('Hidden message is not displayed.'));
// Load older messages and verify again.
$this
->clickLink(t('<<'));
$this
->assertText(t('Displaying messages 1 - 8 of 23 >>'), t('Pager is displayed'));
$this
->assertText($bodies[0], t('Message is displayed.'));
$this
->assertText($bodies[7], t('Message is displayed.'));
$this
->assertNoText($bodies[9], t('Hidden message is not displayed.'));
$this
->assertNoText(t('<<'), t('Older messages link not displayed.'));
// Going back should follow the same order.
$this
->clickLink(t('>>'));
$this
->assertText(t('<< Displaying messages 9 - 18 of 23 >>'), t('Pager is displayed'));
$this
->assertNoText($bodies[0], t('First message is not displayed.'));
$this
->assertNoText($bodies[7], t('Hidden message is not displayed.'));
$this
->assertText($bodies[8], t('Message is displayed.'));
$this
->assertText($bodies[17], t('Message is displayed.'));
$this
->assertNoText($bodies[22], t('Hidden message is not displayed.'));
variable_set('privatemsg_view_max_amount', PRIVATEMSG_UNLIMITED);
$this
->drupalGet('messages');
$this
->clickLink($subject);
// Now with separate default value.
// Verify that only the last 5 messages are displayed.
$this
->assertText(t('<< Displaying messages 19 - 23 of 23'), t('Pager is displayed'));
$this
->assertNoText($bodies[0], t('First message is not displayed.'));
$this
->assertNoText($bodies[17], t('Hidden message is not displayed.'));
$this
->assertText($bodies[18], t('Message is displayed.'));
$this
->assertText($bodies[22], t('Message is displayed.'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
// Load older messages and verify again.
$this
->clickLink(t('<<'));
$this
->assertNoText(t('Displaying messages 1 - 23 of 23'), t('Pager is displayed'));
$this
->assertText($bodies[0], t('Message is displayed.'));
$this
->assertText($bodies[22], t('Message is displayed.'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
$this
->assertNoText(t('<<'), t('Older messages link not displayed.'));
// Check with max_amount = UNLIMITED and different default amount disabled.
variable_set('privatemsg_view_use_max_as_default', FALSE);
$this
->drupalGet('messages');
$this
->clickLink($subject);
$this
->assertNoText(t('Displaying messages 1 - 23 of 23'), t('Pager is displayed'));
$this
->assertText($bodies[0], t('Message is displayed.'));
$this
->assertText($bodies[22], t('Message is displayed.'));
$this
->assertNoText(t('>>'), t('Newer messages link not displayed.'));
$this
->assertNoText(t('<<'), t('Older messages link not displayed.'));
}
/**
* Test sending message from the /messages/new page between two people
*/
function testWriteReplyPrivatemsg() {
// Create an author and two recipients.
$author = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
'select text format for privatemsg',
filter_permission_name(filter_format_load('full_html')),
));
$recipient = $this
->drupalCreateUser(array(
'read privatemsg',
));
$recipient2 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
// Set up a user with "read/write privatemsg" permissions.
$blocked_recipient = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
// Block this recipient to test users who cancelled their accounts.
user_save($blocked_recipient, array(
'status' => 0,
));
// Login author and go to new message form.
$this
->drupalLogin($author);
$this
->drupalGet('messages/new');
// Prepare edit arrays, single recipient with [user].
$edit = array(
'recipient' => $recipient->name . ' [user]',
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// Two recipients.
$edit2 = array(
'recipient' => $recipient->name . ', ' . $recipient2->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// No recipients.
$editnone = array(
'recipient' => '',
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// Invalid recipient.
$editinvalid = array(
'recipient' => $this
->randomName(5),
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// Blocked recipient.
$editrecipientblocked = array(
'recipient' => $blocked_recipient->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// Message for which the author will be blocked later.
$editauthorblocked = array(
'recipient' => $recipient2->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// Empty body.
$editnobody = array(
'recipient' => $recipient->name,
'subject' => $this
->randomName(20),
'body[value]' => '',
);
// Empty subject.
$editnosubject = array(
'recipient' => $recipient->name,
'subject' => '',
'body[value]' => $this
->randomName(100),
);
// Empty subject and body.
$editempty = array(
'recipient' => $recipient->name,
'subject' => '',
'body[value]' => '',
);
// Empty subject and body.
$editonlyspace = array(
'recipient' => $recipient2->name,
'subject' => ' ',
'body[value]' => $this
->randomName(10),
);
// Invalid and valid recipient
$editmixed = array(
'recipient' => ($invalidmixed = $this
->randomName(5)) . ', ' . $recipient->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
// message with a bold part, not allowed with default format
$editformatted = array(
'recipient' => $recipient2->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100) . '<b>formatted message #1</b>',
'body[format]' => 'full_html',
);
// Submit the messages.
$this
->drupalPost('messages/new', $edit, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient->name,
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $edit2, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => implode(', ', array(
$recipient->name,
$recipient2->name,
)),
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $editnone, t('Send message'));
$this
->assertText(t('To field is required.'), 'Message was not sent.');
$this
->drupalPost('messages/new', $editinvalid, t('Send message'));
$this
->assertText(t('You must include at least one valid recipient.'), 'Message was not sent.');
$this
->assertText(t('The following users will not receive this private message: @recipients', array(
'@recipients' => $editinvalid['recipient'],
)), 'Message about non-existing user displayed.');
$this
->drupalPost('messages/new', $editrecipientblocked, t('Send message'));
$this
->assertText(t('@recipients has disabled his or her account.', array(
'@recipients' => $blocked_recipient->name,
)), 'Message about blocked user displayed.');
$this
->assertText(t('You are not allowed to send this message because all recipients are blocked.'), 'Message was not sent.');
// We will block the author later to test whether the reply form appears.
$this
->drupalPost('messages/new', $editauthorblocked, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient2->name,
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $editnobody, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient->name,
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $editnosubject, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient->name,
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $editempty, t('Send message'));
$this
->assertText(t('You must include a subject line with your message.'), 'Empty subject message displayed.');
$this
->drupalPost('messages/new', $editonlyspace, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient2->name,
)), 'Message sent confirmation displayed.');
$this
->drupalPost('messages/new', $editmixed, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient->name,
)), 'Message sent confirmation displayed.');
$this
->assertText(t('The following users will not receive this private message: @recipients', array(
'@recipients' => $invalidmixed,
)), 'Message about non-existing user displayed.');
$this
->drupalPost('messages/new', $editformatted, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient2->name,
)), 'Message sent confirmation displayed.');
// Login as recipient2 and try to write some replies.
$this
->drupalLogin($recipient2);
$this
->drupalGet('messages');
// Check that the message with only a space in the subject uses the body
// as subject.
$this
->clickLink($editonlyspace['body[value]']);
$this
->drupalGet('messages');
$this
->assertNoText($edit['subject'], 'Message sent to other recipient not found.');
$this
->assertText($edit2['subject'], 'Sent message subject found.');
$this
->clickLink($edit2['subject']);
$this
->assertText($edit2['body[value]'], 'Found message body.');
// Prepare replies.
$reply = array(
'body[value]' => $this
->randomName(100),
);
// Empty body.
$replyempty = array(
'body[value]' => '',
);
$this
->drupalPost(NULL, $reply, t('Send message'));
$this
->assertText($reply['body[value]'], 'New message body displayed.');
$this
->drupalPost(NULL, $replyempty, t('Send message'));
$this
->assertText(t('You must include a message in your reply.'));
// reply with a bold part, not allowed with default format
$replyformatted = array(
'body[value]' => $this
->randomName(100) . '<b>formatted message #2</b>',
);
$this
->drupalGet('messages');
$this
->clickLink($editformatted['subject']);
$this
->assertRaw($editformatted['body[value]'], 'Found formatted message body.');
$this
->drupalPost(NULL, $replyformatted, t('Send message'));
$this
->assertNoRaw($replyformatted['body[value]'], 'Did not find formatted reply body.');
$this
->assertText(check_plain($replyformatted['body[value]']), 'New reply body displayed.');
// Login using recipient and try to read the message by going to inbox first.
$this
->drupalLogin($recipient);
$this
->drupalGet('messages');
// Assert if we see the subject of the messages.
$this
->assertText($edit['subject'], 'Sent message subject found.');
$this
->assertText($edit2['subject'], 'Sent message subject found.');
$this
->assertText($editnobody['subject'], 'Sent message subject found.');
$this
->assertText(trim(truncate_utf8(strip_tags($editnosubject['body[value]']), 50, TRUE, TRUE)), 'Sent message subject found.');
$this
->assertText($editmixed['subject'], 'Sent message subject found.');
// Assert that we don't see those that were invalid.
$this
->assertNoText($editnone['subject'], 'Invalid message subject not found.');
$this
->assertNoText($editinvalid['subject'], 'Invalid message subject not found.');
// Navigate into the message.
$this
->clickLink($edit['subject']);
// Confirm that we can read the message that was sent.
$this
->assertText($edit['body[value]'], 'Found message body.');
$this
->assertNoText(t('Reply to thread:'), 'Reply form is not displayed.');
// Verify that the participants information is correct.
$this
->assertText(t('Between you and @author', array(
'@author' => $author->name,
)));
// Navigate into the message.
$this
->drupalGet('messages');
$this
->clickLink($edit2['subject']);
// Confirm that we can read the message that was sent.
$this
->assertText($edit2['body[value]'], 'Found message body.');
// Confirm that we can read the reply that was sent.
$this
->assertText($reply['body[value]'], 'Found reply body.');
// Block the author.
user_save($author, array(
'status' => 0,
));
$this
->drupalLogin($recipient2);
// Navigate into the message.
$this
->drupalGet('messages');
$this
->clickLink($editauthorblocked['subject']);
// Confirm that the reply form is not shown.
$this
->assertNoText(t('Reply'), 'Reply form is not displayed.');
$this
->assertText(t('You can not reply to this conversation because all recipients are blocked.'));
}
/**
* Test functionality around disabling private messaging.
*/
function testDisablePrivatemsg() {
$admin_user = $this
->drupalCreateUser(array(
'administer permissions',
));
$enableduser = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
// set up user with read/write privatemsg permissions
$enableduser2 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
// set up user with read/write privatemsg permissions
$disableduser = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
'allow disabling privatemsg',
));
// set up user with read/write privatemsg permissions
// Create a message between the users that we can use to test
$return = privatemsg_new_thread(array(
$disableduser,
), $this
->randomName(20), $this
->randomName(100), array(
'author' => $enableduser,
));
$mid = $return['message']->thread_id;
$this
->drupalLogin($disableduser);
// Now disable $disabledUser.
$this
->drupalGet('user/' . $disableduser->uid . '/edit');
$edit['pm_enable'] = FALSE;
$this
->drupalPost('user/' . $disableduser->uid . '/edit', $edit, t('Save'));
// Verify that disableduser can list messages.
$this
->drupalGet('messages');
$this
->assertResponse(200, t('HTTP Response 200: Access to reading messages page is allowed.'));
// Verify that $disableduser can read messages but there is not reply form
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertResponse(200, t('HTTP Response 200: Access to message thread page is allowed.'));
$this
->assertNoText(t('Reply to thread'), 'No reply form shown.');
// Verify that $disableduser cannot send a new message.
$this
->drupalGet('messages/new');
$this
->assertResponse(403, t('HTTP Response 403: Access to Write New Message page was blocked to user with private messaging disabled'));
// Use a newly loaded user object to test the API calls.
$disableduser_loaded = user_load($disableduser->uid, TRUE);
// Check that $disableduser cannot submit a reply
$result = privatemsg_reply($return['message']->thread_id, $this
->randomName(100), array(
'author' => $disableduser_loaded,
));
$this
->assertFalse($result['success'], 'Message reply was not sent.');
// Log in as $enableduser and try to send to $disabled user.
// Make sure that a message to multiple recipients still works if one is
// disabled.
$message = array(
'recipient' => $disableduser->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
$this
->drupalLogin($enableduser);
$this
->drupalPost('messages/new', $message, t('Send message'));
$this
->assertText(t('You are not allowed to send this message because all recipients are blocked.'));
// Make sure that a message to multiple recipients still works if one is
// disabled.
$messagemultiple = array(
'recipient' => $enableduser2->name . ', ' . $disableduser->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
$this
->drupalPost('messages/new', $messagemultiple, t('Send message'));
$this
->assertText(t('@recipient has disabled private message receiving.', array(
'@recipient' => $disableduser->name,
)), 'Message about user with disabled private messaging.');
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $enableduser2->name,
)), 'Message sent confirmation displayed.');
// Remove the permission to disable privatemsg.
$this
->drupalLogin($admin_user);
// 6 is the rid of the custom $disableduser role.
$edit = array(
'6[allow disabling privatemsg]' => FALSE,
);
$this
->drupalPost('admin/people/permissions', $edit, t('Save permissions'));
// Make sure that the option is not visible anymore.
$this
->drupalLogin($disableduser);
$this
->drupalGet('user/' . $disableduser->uid . '/edit');
$this
->assertNoText(t('Enable Private Messaging'), t('Disable privatemsg setting not displayed'));
// Verify that the user is now allowed to write messages again.
$this
->drupalGet('messages/new');
$this
->assertNoText(t('You are not authorized to access this page.'), t('Access denied page is not displayed.'));
$this
->assertText(t('Write new message'), t('Write message form is displayed.'));
}
/**
* Test correct handling of read all permissions.
*/
function testReadAllPermission() {
$author = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
$recipient = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
$admin = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
'read all private messages',
));
// Create new message.
$edit = array(
'recipient' => $recipient->name,
'subject' => $this
->randomName(20),
'body[value]' => $this
->randomName(100),
);
$this
->drupalLogin($author);
$this
->drupalPost('messages/new', $edit, t('Send message'));
$this
->assertText(t('A message has been sent to @recipients.', array(
'@recipients' => $recipient->name,
)), t('Message sent confirmation displayed'));
$this
->drupalLogin($admin);
$this
->drupalGet('messages/view/1');
$this
->assertText(t('This conversation is being viewed with escalated privileges and may not be the same as shown to normal users.'), t('Notice about read all mode displayed.'));
// Send a first response.
$admin_edit = array(
'body[value]' => $this
->randomName(100),
);
$this
->drupalPost('messages/view/1', $admin_edit, t('Send message'));
// Make sure that the notice is not displayed anymore.
// @tod: Commented out because this does not work as expected.
$this
->assertNoText(t('This conversation is being viewed with escalated privileges and may not be the same as shown to normal users.'), t('Notice about read all mode not displayed.'));
// Make sure that both the existing message body and the new one are displayed.
$this
->assertText($edit['body[value]'], t('First message body displayed.'));
$this
->assertText($admin_edit['body[value]'], t('New message body displayed.'));
$admin_recipient_count = db_query("SELECT COUNT(*) FROM {pm_index} WHERE recipient = :recipient AND thread_id = :thread_id", array(
':recipient' => $admin->uid,
':thread_id' => 1,
))
->fetchField();
$this
->assertEqual($admin_recipient_count, 2, t('Admin is listed as recipient for every message once.'));
// Send a second response.
$admin_edit2 = array(
'body[value]' => $this
->randomName(100),
);
$this
->drupalPost('messages/view/1', $admin_edit2, t('Send message'));
// Make sure that both the existing message body and the new one are displayed.
$this
->assertText($edit['body[value]'], t('First message body displayed.'));
$this
->assertText($admin_edit['body[value]'], t('Second response body displayed.'));
$this
->assertText($admin_edit2['body[value]'], t('Third message body displayed.'));
$admin_recipient_count = db_query("SELECT COUNT(*) FROM {pm_index} WHERE recipient = :recipient AND thread_id = :thread_id", array(
':recipient' => $admin->uid,
':thread_id' => 1,
))
->fetchField();
$this
->assertEqual($admin_recipient_count, 3, t('Admin is listed as recipient for every message once.'));
}
/**
* Tests for the flush feature
*/
function testPrivatemsgFlush() {
$author = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
$recipient = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
));
// Send 10 messages.
for ($i = 0; $i < 10; $i++) {
privatemsg_new_thread(array(
$recipient,
), 'Message #' . $i, 'This is the body', array(
'author' => $author,
));
}
// Delete message 1, 3, 4, 6, 9 for author.
foreach (array(
1,
3,
4,
6,
9,
) as $pmid) {
privatemsg_message_change_delete($pmid, TRUE, $author);
}
// Delete message 1, 2, 4, 6, 8 for recipient.
foreach (array(
1,
3,
4,
6,
9,
) as $pmid) {
privatemsg_message_change_delete($pmid, TRUE, $recipient);
}
// Now, mid 1, 4 and 6 have been deleted by both.
// Flush configuration, enable, delay is default, 30 days
variable_set('privatemsg_flush_enabled', TRUE);
// Set back the deleted timestamp 35 days back of mid 4.
db_update('pm_index')
->fields(array(
'deleted' => REQUEST_TIME - 35 * 86400,
))
->condition('mid', 4)
->execute();
// Set back the deleted timestamp of mid 6, but only 20 days back.
db_update('pm_index')
->fields(array(
'deleted' => REQUEST_TIME - 20 * 86400,
))
->condition('mid', 6)
->execute();
// Run flush.
privatemsg_cron();
// Check if the undeleted messages are still there.
foreach (array(
2,
3,
5,
7,
8,
9,
10,
) as $pmid) {
$message = privatemsg_message_load($pmid, $author);
$this
->assertTrue(!empty($message), t('Undeleted message #%id is still in the system', array(
'%id' => $pmid,
)));
}
// Check if the "recently" deleted messages are still there.
foreach (array(
1,
6,
) as $pmid) {
$message = privatemsg_message_load($pmid, $author);
$this
->assertTrue(!empty($message), t('Deleted message #%id is still in the system', array(
'%id' => $pmid,
)));
}
// Mid 4 should have been flushed.
entity_get_controller('privatemsg_message')
->resetCache();
$message = privatemsg_message_load(4, $author);
$this
->assertTrue(empty($message), t('Message #4 has been flushed'));
}
function testDelete() {
// Create users.
$author = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
'delete privatemsg',
));
$recipient = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
'delete privatemsg',
));
$recipient2 = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
'cancel account',
));
$admin = $this
->drupalCreateUser(array(
'write privatemsg',
'read privatemsg',
'delete privatemsg',
'read all private messages',
));
$dummy = $this
->drupalCreateUser(array(
'cancel account',
));
// Create texts.
$subject = $this
->randomName(20);
$body1 = $this
->randomName(100);
$body2 = $this
->randomName(100);
// Create message and response.
$return = privatemsg_new_thread(array(
$recipient,
$recipient2,
), $subject, $body1, array(
'author' => $author,
));
privatemsg_reply($return['message']->thread_id, $body2, array(
'author' => $recipient,
));
// Check with user without delete permission.
$this
->drupalLogin($recipient2);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText($subject, 'Subject is displayed');
$this
->assertText($body1, 'First message is displayed');
$this
->assertText($body2, 'Second message is displayed');
$this
->assertNoLink(t('Delete'), 'Delete message is link is not displayed for user without permission');
// Check if access for that user is denied.
$this
->drupalGet('messages/delete/' . $return['message']->thread_id . '/' . $return['message']->mid);
$this
->assertText(t('Access denied'));
// Check with user with delete access.
$this
->drupalLogin($recipient);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText(t('Delete'), 'Delete message is link is displayed for user without permission');
// Click delete link of the second message and cancel.
$this
->clickLink(t('Delete'), 1);
$this
->assertText(t('Are you sure you want to delete this message?'), 'Confirmation message displayed');
$this
->clickLink(t('Cancel'));
$this
->assertText($body2, 'Second message is still displayed');
// Confirm message deletion.
$this
->clickLink(t('Delete'), 1);
$this
->assertText(t('Are you sure you want to delete this message?'), 'Confirmation message displayed');
$this
->drupalPost(NULL, array(), t('Delete'));
$this
->assertText(t('Message has been deleted.'), 'Message has been deleted');
$this
->assertText($body1, 'First message is still displayed');
$this
->assertNoText($body2, 'Second message was deleted');
// Click delete link of the first message and cancel.
$this
->clickLink(t('Delete'));
$this
->assertText(t('Are you sure you want to delete this message?'), 'Confirmation message displayed');
$this
->clickLink(t('Cancel'));
$this
->assertText($body1, 'First message is still displayed');
// Confirm message deletion.
$this
->clickLink(t('Delete'));
$this
->assertText(t('Are you sure you want to delete this message?'), 'Confirmation message displayed');
$this
->drupalPost(NULL, array(), t('Delete'));
$this
->assertText(t('Message has been deleted.'), 'Message deleted has been deleted');
$this
->assertNoText($subject, 'All messages of that thread have been deleted');
// Test if the message has not been deleted for other users.
$this
->drupalLogin($recipient2);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText($body1, 'First message is still displayed');
$this
->assertText($body2, 'First message is still displayed');
// Test delete all checkbox.
$this
->drupalLogin($admin);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->clickLink(t('Delete'), 1);
$this
->drupalPost(NULL, array(
'delete_options' => TRUE,
), t('Delete'));
$this
->assertText(t('Message has been deleted for all users.'), 'Message deleted has been deleted');
// Test if the message has been deleted for all users.
$this
->drupalLogin($recipient2);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText($body1, 'First message is still displayed');
$this
->assertNoText($body2, 'Second message has been deleted for all users');
// Check that messages of canceled users (user_cancel_delete) are deleted too.
$edit = array(
'body[value]' => $this
->randomName(100),
);
$this
->drupalPost(NULL, $edit, t('Send message'));
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText($edit['body[value]'], t('New reply is displayed'));
// Reload user object, don't use the cache.
$recipient2 = user_load($recipient2->uid, TRUE);
// Attempt to cancel account.
variable_set('user_cancel_method', 'user_cancel_delete');
$this
->drupalGet('user/' . $recipient2->uid . '/edit');
$this
->drupalPost(NULL, NULL, t('Cancel account'));
// Confirm account cancellation.
// Explicitly use time(), REQUEST_TIME is not exact enough.
$timestamp = time();
$this
->drupalPost(NULL, NULL, t('Cancel account'));
// Confirm account cancellation request.
$this
->drupalGet("user/{$recipient2->uid}/cancel/confirm/{$timestamp}/" . user_pass_rehash($recipient2->pass, $timestamp, $recipient2->login, $recipient2->uid));
// Simpletest thinks that we are still logged in.
$this->loggedInUser = NULL;
$this
->drupalLogin($admin);
$this
->drupalGet('messages/view/' . $return['message']->thread_id);
$this
->assertText($body1, 'First message is still displayed');
$this
->assertNoText($edit['body[value]'], t('Reply of deleted user is not displayed anymore'));
// Test if admin is allowed to delete messages of other users.
$this
->drupalGet('user/' . $author->uid . '/messages');
$this
->checkThreadDelete($return['message']);
// Check if user is allowed to delete messages.
$this
->drupalLogin($author);
$this
->drupalGet('messages');
$this
->checkThreadDelete($return['message']);
// Check that deleting users that didn't send any message does not cause
// errors.
$this
->drupalLogin($dummy);
// Reload user object, don't use the cache.
$dummy = user_load($dummy->uid, TRUE);
// Attempt to cancel account.
$this
->drupalGet('user/' . $dummy->uid . '/edit');
$this
->drupalPost(NULL, NULL, t('Cancel account'));
// Confirm account cancellation.
// Explicitly use time(), REQUEST_TIME is not exact enough.
$timestamp = time();
$this
->drupalPost(NULL, NULL, t('Cancel account'));
// Confirm account cancellation request.
$this
->drupalGet("user/{$dummy->uid}/cancel/confirm/{$timestamp}/" . user_pass_rehash($dummy->pass, $timestamp, $dummy->login, $dummy->uid));
}
function checkThreadDelete($message) {
$this
->assertText($message->subject, t('Message is displayed.'));
$delete = array(
'list[' . $message->thread_id . ']' => 1,
);
$this
->drupalPost(NULL, $delete, t('Delete'));
$this
->assertText(t('Deleted @count thread.', array(
'@count' => 1,
)), t('Delete message displayed.'));
$this
->assertNoText($message->subject, t('Message is not displayed anymore.'));
$this
->assertText(t('No messages available.'), t('No messages available anymore.'));
// Revert delete action.
$this
->clickLink(t('undone'));
$this
->assertText(t('Restored @count thread.', array(
'@count' => 1,
)), t('Restore message displayed'));
$this
->assertText($message->subject, t('Message is displayed again.'));
$this
->assertNoText(t('No messages available.'), t('Messages are available.'));
}
/**
* Test preview functionality.
*/
function testPreview() {
$user = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
// Enable preview button.
variable_set('privatemsg_display_preview_button', TRUE);
$message = array(
'recipient' => $user->name,
'subject' => $this
->randomName(),
'body[value]' => $this
->randomName(50),
);
$this
->drupalLogin($user);
// Preview message.
$this
->drupalPost('messages/new', $message, t('Preview message'));
$this
->assertTitle(t('Write new message to @user', array(
'@user' => $user->name,
)) . ' | Drupal', t('Correct title is displayed.'));
$this
->assertFieldByXPath($this
->buildXPathQuery('//div[@class=:class]/p', array(
':class' => 'privatemsg-message-body',
)), $message['body[value]'], t('Message body is previewed'));
$this
->assertFieldByName('body[value]', $message['body[value]'], t('Message body field has the correct default value.'));
// Send message.
$this
->drupalPost(NULL, array(), t('Send message'));
$this
->assertText($message['subject'], t('Message subject is displayed.'));
$this
->assertText($message['body[value]'], t('Message body is displayed.'));
$this
->assertText(t('A message has been sent to @recipient.', array(
'@recipient' => $user->name,
)), t('Sent confirmation displayed.'));
}
/**
* Test autocomplete.
*/
function testAutocomplete() {
$current = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
$user1 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
$user2 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
$user3 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
$this
->drupalLogin($current);
// Use specific names to be able to test for specific name combinations.
user_save($current, array(
'name' => 'wathever',
));
user_save($user1, array(
'name' => 'aaaa',
));
user_save($user2, array(
'name' => 'aaab',
));
user_save($user3, array(
'name' => 'bbbb',
));
$json = $this
->drupalGet('messages/autocomplete/aa');
$autocomplete = (array) json_decode($json);
$this
->assertEqual(count($autocomplete), 2, t('Autocomplete object contains two suggestions.'));
$this
->assertEqual($autocomplete['aaaa, '], 'aaaa');
$this
->assertEqual($autocomplete['aaab, '], 'aaab');
$json = $this
->drupalGet('messages/autocomplete/bb');
$autocomplete = (array) json_decode($json);
$this
->assertEqual(count($autocomplete), 1, t('Autocomplete object contains one suggestion.'));
$this
->assertEqual($autocomplete['bbbb, '], 'bbbb');
$json = $this
->drupalGet('messages/autocomplete/cc');
$autocomplete = (array) json_decode($json);
$this
->assertEqual(count($autocomplete), 0, t('Autocomplete object contains no suggestions.'));
$json = $this
->drupalGet('messages/autocomplete/aaaa, a');
$autocomplete = (array) json_decode($json);
$this
->assertEqual(count($autocomplete), 1, t('Autocomplete object contains one suggestion.'));
$this
->assertEqual($autocomplete['aaaa, aaab, '], 'aaab');
// Test XSS protection, create a username and check that the suggestion is
// safe.
$user4 = $this
->drupalCreateUser(array(
'read privatemsg',
'write privatemsg',
));
$user4 = user_save($user4, array(
'name' => "<script>alert('XSS')</script>",
));
$json = $this
->drupalGet('messages/autocomplete/<sc');
$autocomplete = (array) json_decode($json);
$this
->assertEqual(count($autocomplete), 1, t('Autocomplete object contains one suggestion.'));
$this
->assertEqual($autocomplete[strip_tags($user4->name) . ', '], strip_tags($user4->name));
}
/**
* Implements tearDown().
*/
function tearDown() {
//we dont really need to do this. i'm adding it just to keep it in front of my eyes so i can memorize it.
parent::tearDown();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalTestCase:: |
protected | property | Assertions thrown in that test case. | |
DrupalTestCase:: |
protected | property | The database prefix of this test run. | |
DrupalTestCase:: |
protected | property | The original file directory, before it was changed for testing purposes. | |
DrupalTestCase:: |
public | property | Current results of this test case. | |
DrupalTestCase:: |
protected | property | Flag to indicate whether the test has been set up. | |
DrupalTestCase:: |
protected | property | ||
DrupalTestCase:: |
protected | property | ||
DrupalTestCase:: |
protected | property | This class is skipped when looking for the source of an assertion. | |
DrupalTestCase:: |
protected | property | The test run ID. | |
DrupalTestCase:: |
protected | property | Time limit for the test. | |
DrupalTestCase:: |
public | property | Whether to cache the installation part of the setUp() method. | |
DrupalTestCase:: |
public | property | Whether to cache the modules installation part of the setUp() method. | |
DrupalTestCase:: |
protected | property | URL to the verbose output file directory. | |
DrupalTestCase:: |
protected | function | Internal helper: stores the assert. | |
DrupalTestCase:: |
protected | function | Check to see if two values are equal. | |
DrupalTestCase:: |
protected | function | Check to see if a value is false (an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
protected | function | Check to see if two values are identical. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not equal. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not identical. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not false (not an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
public static | function | Delete an assertion record by message ID. | |
DrupalTestCase:: |
protected | function | Fire an error assertion. | 1 |
DrupalTestCase:: |
public | function | Handle errors during test runs. | 1 |
DrupalTestCase:: |
protected | function | Handle exceptions. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always negative. | |
DrupalTestCase:: |
public static | function | Converts a list of possible parameters into a stack of permutations. | |
DrupalTestCase:: |
protected | function | Cycles through backtrace until the first non-assertion method is found. | |
DrupalTestCase:: |
public static | function | Returns the database connection to the site running Simpletest. | |
DrupalTestCase:: |
public static | function | Store an assertion from outside the testing context. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always positive. | |
DrupalTestCase:: |
public static | function | Generates a random string containing letters and numbers. | |
DrupalTestCase:: |
public static | function | Generates a random string of ASCII characters of codes 32 to 126. | |
DrupalTestCase:: |
public | function | Run all tests in this class. | |
DrupalTestCase:: |
protected | function | Logs a verbose message in a text file. | |
DrupalWebTestCase:: |
protected | property | Additional cURL options. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The current cookie file used by cURL. | |
DrupalWebTestCase:: |
protected | property | The cookies of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The handle of the current cURL connection. | |
DrupalWebTestCase:: |
protected | property | The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The parsed version of the page. | |
DrupalWebTestCase:: |
protected | property | Whether the files were copied to the test files directory. | |
DrupalWebTestCase:: |
protected | property | The headers of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | HTTP authentication credentials (<username>:<password>). | |
DrupalWebTestCase:: |
protected | property | HTTP authentication method | |
DrupalWebTestCase:: |
protected | property | The current user logged in using the internal browser. | |
DrupalWebTestCase:: |
protected | property | The original shutdown handlers array, before it was cleaned for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The original user, before it was changed to a clean uid = 1 for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser (plain text version). | |
DrupalWebTestCase:: |
protected | property | The number of redirects followed during the handling of a request. | |
DrupalWebTestCase:: |
protected | property | The current session ID, if available. | |
DrupalWebTestCase:: |
protected | property | The current session name, if available. | |
DrupalWebTestCase:: |
protected | property | The URL currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists with the given name or ID. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given ID and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is found, and optional with the specified index. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is found. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the given value. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the pattern in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the string in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name or ID. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field doesn't exist or its value doesn't match, by XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is not found. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is not found. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the perl regex pattern is not present in raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page did not return the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is NOT found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is not the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found MORE THAN ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the Perl regex pattern is found in the raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page responds with the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text IS found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Helper for assertText and assertNoText. | |
DrupalWebTestCase:: |
protected | function | Asserts themed output. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found ONLY ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
DrupalWebTestCase:: |
protected | function | Pass if the internal browser's URL matches the given path. | |
DrupalWebTestCase:: |
protected | function | Builds an XPath query. | |
DrupalWebTestCase:: |
protected | function | Changes the database connection to the prefixed one. | |
DrupalWebTestCase:: |
protected | function | Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive. | |
DrupalWebTestCase:: |
protected | function | Check to make sure that the array of permissions are valid. | |
DrupalWebTestCase:: |
protected | function | Follows a link by name. | |
DrupalWebTestCase:: |
protected | function | Helper function: construct an XPath for the given set of attributes and value. | |
DrupalWebTestCase:: |
protected | function | Copy the setup cache from/to another table and files directory. | |
DrupalWebTestCase:: |
protected | function | Runs cron in the Drupal installed by Simpletest. | |
DrupalWebTestCase:: |
protected | function | Close the cURL handler and unset the handler. | |
DrupalWebTestCase:: |
protected | function | Initializes and executes a cURL request. | |
DrupalWebTestCase:: |
protected | function | Reads headers and registers errors received from the tested site. | |
DrupalWebTestCase:: |
protected | function | Initializes the cURL connection. | |
DrupalWebTestCase:: |
protected | function | Compare two files based on size and file name. | |
DrupalWebTestCase:: |
protected | function | Creates a custom content type based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a node based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a role with specified permissions. | |
DrupalWebTestCase:: |
protected | function | Create a user with a given set of permissions. | |
DrupalWebTestCase:: |
protected | function | Retrieves a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Retrieve a Drupal path or an absolute path and JSON decode the result. | |
DrupalWebTestCase:: |
protected | function | Gets the current raw HTML of requested page. | |
DrupalWebTestCase:: |
protected | function | Gets the value of an HTTP response header. If multiple requests were required to retrieve the page, only the headers from the last request will be checked by default. However, if TRUE is passed as the second argument, all requests will be processed… | |
DrupalWebTestCase:: |
protected | function | Gets the HTTP response headers of the requested page. Normally we are only interested in the headers returned by the last request. However, if a page is redirected or HTTP authentication is in use, multiple requests will be required to retrieve the… | |
DrupalWebTestCase:: |
protected | function | Gets an array containing all e-mails sent during this test case. | |
DrupalWebTestCase:: |
function | Get a node from the database based on its title. | ||
DrupalWebTestCase:: |
protected | function | Gets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Get a list files that can be used in tests. | |
DrupalWebTestCase:: |
protected | function | Generate a token for the currently logged in user. | |
DrupalWebTestCase:: |
protected | function | Retrieves only the headers for a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Log in a user with the internal browser. | |
DrupalWebTestCase:: |
protected | function | ||
DrupalWebTestCase:: |
protected | function | Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser. | |
DrupalWebTestCase:: |
protected | function | Execute an Ajax submission. | |
DrupalWebTestCase:: |
protected | function | Sets the raw HTML content. This can be useful when a page has been fetched outside of the internal browser and assertions need to be made on the returned page. | |
DrupalWebTestCase:: |
protected | function | Sets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Takes a path and returns an absolute path. | |
DrupalWebTestCase:: |
protected | function | Get all option elements, including nested options, in a select. | |
DrupalWebTestCase:: |
protected | function | Get the selected value from a select field. | |
DrupalWebTestCase:: |
protected | function | Returns the cache key used for the setup caching. | |
DrupalWebTestCase:: |
protected | function | Get the current URL from the cURL handler. | |
DrupalWebTestCase:: |
protected | function | Handle form input related to drupalPost(). Ensure that the specified fields exist and attempt to create POST data in the correct manner for the particular field type. | |
DrupalWebTestCase:: |
protected | function | Copies the cached tables and files for a cached installation setup. | |
DrupalWebTestCase:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
DrupalWebTestCase:: |
protected | function | Preload the registry from the testing site. | |
DrupalWebTestCase:: |
protected | function | Generates a database prefix for running tests. | |
DrupalWebTestCase:: |
protected | function | Prepares the current environment for running the test. | |
DrupalWebTestCase:: |
protected | function | Recursively copy one directory to another. | |
DrupalWebTestCase:: |
protected | function | Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. | 1 |
DrupalWebTestCase:: |
protected | function | Reset all data structures after having enabled new modules. | |
DrupalWebTestCase:: |
protected | function | Store the installation setup to a cache. | |
DrupalWebTestCase:: |
protected | function | Outputs to verbose the most recent $count emails sent. | |
DrupalWebTestCase:: |
protected | function | Perform an xpath search on the contents of the internal browser. The search is relative to the root element (HTML tag normally) of the page. | |
DrupalWebTestCase:: |
function |
Constructor for DrupalWebTestCase. Overrides DrupalTestCase:: |
1 | |
PrivatemsgBaseTestCase:: |
protected | property |
Use testing profile. Overrides DrupalWebTestCase:: |
1 |
PrivatemsgTestCase:: |
function | |||
PrivatemsgTestCase:: |
public static | function | Implements getInfo(). | |
PrivatemsgTestCase:: |
function |
Implements setUp(). Overrides DrupalWebTestCase:: |
||
PrivatemsgTestCase:: |
function |
Implements tearDown(). Overrides DrupalWebTestCase:: |
||
PrivatemsgTestCase:: |
function | Test autocomplete. | ||
PrivatemsgTestCase:: |
function | |||
PrivatemsgTestCase:: |
function | Test functionality around disabling private messaging. | ||
PrivatemsgTestCase:: |
function | |||
PrivatemsgTestCase:: |
function | Test preview functionality. | ||
PrivatemsgTestCase:: |
function | Tests for the flush feature | ||
PrivatemsgTestCase:: |
function | Test user access to /messages Create user with no 'read privatemsg' permission. Try to access mailbox and see if it gives access denied error Create user with 'read privatemsg' permission. Try to access mailbox and see if it gives… | ||
PrivatemsgTestCase:: |
function | Test user access to /messages/new Create user with no 'write privatemsg' permission. Try to access Write New Message page and see if it gives access denied error Create user with 'write privatemsg' permission. Try to access Write… | ||
PrivatemsgTestCase:: |
function | Test correct handling of read all permissions. | ||
PrivatemsgTestCase:: |
function | Test sending message from the /messages/new page between two people |