Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403] [Versions 39 and 310]

Test api's in message lib.

Copyright: 2014 Rajesh Taneja <rajesh@moodle.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 338 lines (13 kb)
Included or required:0 times
Referenced: 4 times
Includes or requires: 0 files

Defines 1 class


Class: core_message_messagelib_testcase  - X-Ref

Test api's in message lib.

setUp()   X-Ref
Test set up.

This is executed before running any test in this file.

send_fake_message($userfrom, $userto, $message = 'Hello world!', $notification = 0, $time = 0)   X-Ref
Send a fake message.

{@link message_send()} does not support transaction, this function will simulate a message
sent from a user to another. We should stop using it once {@link message_send()} will support
transactions. This is not clean at all, this is just used to add rows to the table.

param: stdClass $userfrom user object of the one sending the message.
param: stdClass $userto user object of the one receiving the message.
param: string $message message to send.
param: int $notification if the message is a notification.
param: int $time the time the message was sent
return: int the id of the message

test_message_get_blocked_users()   X-Ref
Test message_get_blocked_users throws an exception because has been removed.


test_message_get_contacts()   X-Ref
Test message_get_contacts throws an exception because has been removed.


test_message_count_unread_messages()   X-Ref
Test message_count_unread_messages.
TODO: MDL-69643


test_message_count_unread_messages_with_read_messages()   X-Ref
Test message_count_unread_messages with read messages.


test_message_count_unread_messages_with_deleted_messages()   X-Ref
Test message_count_unread_messages with deleted messages.


test_message_count_unread_messages_with_sent_messages()   X-Ref
Test message_count_unread_messages with sent messages.


test_message_search_users()   X-Ref
Test message_search_users.


test_message_get_messages()   X-Ref
Test message_get_messages.


test_message_get_messages_only_group_conversations()   X-Ref
Test message_get_messages with only group conversations between users.