mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-07-30 21:16:10 -04:00
32 lines
957 B
PHP
32 lines
957 B
PHP
<?php
|
|
|
|
namespace Gazelle;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class UserNavigationTest extends TestCase {
|
|
protected User $user;
|
|
|
|
public function setUp(): void {
|
|
$this->user = \GazelleUnitTest\Helper::makeUser('user.' . randomString(10), 'forum');
|
|
}
|
|
|
|
public function tearDown(): void {
|
|
$this->user->remove();
|
|
}
|
|
|
|
public function testNavigationBasic(): void {
|
|
$manager = new Manager\UserNavigation();
|
|
$fullList = $manager->fullList();
|
|
$this->assertCount(12, $fullList, 'user-nav-manager-full');
|
|
|
|
$this->assertTrue(
|
|
$this->user->setField('nav_list', [$fullList[3]["id"], $fullList[2]["id"], $fullList[1]["id"]])->modify(),
|
|
'user-nav-modify'
|
|
);
|
|
$userList = $manager->userControlList($this->user);
|
|
$this->assertCount(3, $userList, 'user-nav-count');
|
|
$this->assertEquals($fullList[2]["id"], $userList[1]["id"], 'user-nav-order');
|
|
}
|
|
}
|