This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/pm/test.php
2024-02-11 11:34:17 +00:00

56 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class PrivMsgTest extends ShimmiePHPUnitTestCase
{
public function testUserReadOwnMessage(): void
{
// Send from admin to user
$this->log_in_as_admin();
send_event(new SendPMEvent(new PM(
User::by_name(self::$admin_name)->id,
"0.0.0.0",
User::by_name(self::$user_name)->id,
"message demo to test",
"test body"
)));
// Check that user can see own messages
$this->log_in_as_user();
$this->get_page("user/" . self::$user_name);
$this->assert_text("message demo to test");
// FIXME: read PM
// $this->get_page("pm/read/0");
// $this->assert_text("No such PM");
// FIXME: delete PM
// send_event();
// $this->get_page("user");
// $this->assert_no_text("message demo to test");
// FIXME: verify deleted
// $this->get_page("pm/read/0");
// $this->assert_text("No such PM");
}
public function testAdminReadOtherMessage(): void
{
// Send from admin to user
$this->log_in_as_admin();
send_event(new SendPMEvent(new PM(
User::by_name(self::$admin_name)->id,
"0.0.0.0",
User::by_name(self::$user_name)->id,
"message demo to test",
"test body"
)));
// Check that admin can see user's messages
$this->get_page("user/" . self::$user_name);
$this->assert_text("message demo to test");
}
}