Files

160 lines
6.2 KiB
PHP

<?php
namespace Gazelle;
use PHPUnit\Framework\TestCase;
use GazelleUnitTest\Helper;
class ForumSearchTest extends TestCase {
protected ForumCategory $category;
protected Forum $forum;
protected ForumThread $thread;
protected User $user;
public function setUp(): void {
$this->user = Helper::makeUser('user.' . randomString(10), 'forum');
}
public function tearDown(): void {
$this->thread->remove();
$this->forum->remove();
$this->category->remove();
$this->user->remove();
}
public function testForumSearchThread(): void {
$this->category = new Manager\ForumCategory()->create('phpunit category', 10001);
$this->forum = Helper::makeForum(
user: $this->user,
sequence: 250,
category: $this->category,
name: 'Search forum',
description: 'This is where it is found',
);
$title = 'phpunit search thread ' . randomString(10);
$body = 'search body ' . randomString(10);
$threadMan = new Manager\ForumThread();
$this->thread = $threadMan->create($this->forum, $this->user, $title, $body);
$search = new Search\Forum($this->user);
$this->assertInstanceOf(Search\Forum::class, $search, 'forum-search-new');
$this->assertFalse($search->isBodySearch(), 'forum-search-title');
$search->setSearchText('textnotfound ' . randomString(40));
$this->assertEquals(0, $search->totalHits(), 'forum-search-title-miss');
$search->setSearchText($title);
$this->assertEquals(1, $search->totalHits(), 'forum-search-title-hit');
$search->setSearchType('body');
$this->assertTrue($search->isBodySearch(), 'forum-search-body');
$search->setSearchText('textnotfound ' . randomString(40));
$this->assertEquals(0, $search->totalHits(), 'forum-search-body-miss');
$search->setSearchText($body);
$this->assertEquals(1, $search->totalHits(), 'forum-search-body-hit');
$resultList = $search->results(new Util\Paginator(25, 1));
$this->assertCount(1, $resultList, 'forum-search-body-result');
$result = current($resultList);
$this->assertEquals($this->thread->id, $result[0], 'forum-search-body-thread-id');
$this->assertEquals($this->thread->title(), $result[1], 'forum-search-body-thread-title');
$this->assertEquals($this->forum->id, $result[2], 'forum-search-body-thread-forum-id');
$this->assertEquals($this->forum->name(), $result[3], 'forum-search-body-thread-forum-name');
// 4 is post created
// 5 is post id
$this->assertEquals($body, $result[6], 'forum-search-body-thread-forum-body');
$this->assertEquals($this->thread->created(), $result[7], 'forum-search-body-thread-created');
}
public function testForumSearchAuthor(): void {
$this->category = new Manager\ForumCategory()->create('phpunit category', 10001);
$this->forum = Helper::makeForum(
user: $this->user,
sequence: 250,
category: $this->category,
name: 'Search forum',
description: 'This is where it is found',
);
$title = 'phpunit search thread ' . randomString(10);
$body = 'search body ' . randomString(10);
$threadMan = new Manager\ForumThread();
$this->thread = $threadMan->create($this->forum, $this->user, $title, $body);
$search = new Search\Forum($this->user);
$this->assertInstanceOf(Search\Forum::class, $search->setAuthor($this->user->username()), 'forum-search-author');
$this->assertEquals(1, $search->totalHits(), 'forum-search-user-hit');
$search->setAuthor('nobody-by-this-name!');
$this->assertEquals(0, $search->totalHits(), 'forum-search-user-miss');
}
public function testForumSearchJson(): void {
$this->category = new Manager\ForumCategory()->create('phpunit category', 10001);
$this->forum = Helper::makeForum(
user: $this->user,
sequence: 250,
category: $this->category,
name: 'Search forum',
description: 'This is where it is found',
);
$title = 'phpunit search thread ' . randomString(10);
$body = 'search body ' . randomString(10);
$threadMan = new Manager\ForumThread();
$this->thread = $threadMan->create($this->forum, $this->user, $title, $body);
$pm = $this->thread->addPost($this->user, randomString());
$payload = new Json\PostHistory(
new Search\Forum($this->user),
new Util\Paginator(1, 1),
)->payload();
$this->assertEqualsCanonicalizing(
[
'currentPage',
'pages',
'messages',
],
array_keys($payload),
'json-posthistory-payload',
);
$this->assertCount(1, $payload['messages'], 'json-posthistory-total');
$this->assertEqualsCanonicalizing(
[
'currentPage',
'pages',
'messages',
],
array_keys($payload),
'json-posthistory-payload',
);
$this->assertCount(1, $payload['messages'], 'json-posthistory-total');
$this->assertEqualsCanonicalizing(
[
"postId",
"topicId",
"threadTitle",
"lastPostId",
"lastRead",
"locked",
"sticky",
"addedTime",
"body",
"bbbody",
"editedUserId",
"editedUsername",
"editedTime",
],
array_keys($payload['messages'][0]),
'json-posthistory-payload-pm-keys',
);
$this->assertEquals(
$this->thread->id,
$payload['messages'][0]['topicId'],
'json-posthistory-payload-pm-thread-id',
);
$this->assertEquals(
$pm->id,
$payload['messages'][0]['postId'],
'json-posthistory-payload-pm-post-id',
);
}
}