You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\Tests\CourseBundle\Repository;
|
|
|
|
use Chamilo\CourseBundle\Entity\CLpCategory;
|
|
use Chamilo\CourseBundle\Entity\CLpCategoryRelUser;
|
|
use Chamilo\CourseBundle\Repository\CLpCategoryRepository;
|
|
use Chamilo\Tests\AbstractApiTest;
|
|
use Chamilo\Tests\ChamiloTestTrait;
|
|
|
|
class CLpCategoryRepositoryTest extends AbstractApiTest
|
|
{
|
|
use ChamiloTestTrait;
|
|
|
|
public function testCreate(): void
|
|
{
|
|
$em = $this->getEntityManager();
|
|
$repo = self::getContainer()->get(CLpCategoryRepository::class);
|
|
|
|
$course = $this->createCourse('new');
|
|
$teacher = $this->createUser('teacher');
|
|
|
|
$category = (new CLpCategory())
|
|
->setTitle('cat')
|
|
->setParent($course)
|
|
->setCreator($teacher)
|
|
;
|
|
$category->addCourseLink($course);
|
|
$this->assertHasNoEntityViolations($category);
|
|
$em->persist($category);
|
|
$em->flush();
|
|
|
|
$link = $category->getResourceNode()->getResourceLinkByContext($course);
|
|
|
|
$this->assertSame($category->getResourceIdentifier(), $category->getIid());
|
|
$this->assertSame(0, $link?->getDisplayOrder());
|
|
$this->assertSame('cat', (string) $category);
|
|
$this->assertSame(1, $repo->count([]));
|
|
|
|
$link = $repo->getLink($category, $this->getContainer()->get('router'));
|
|
$this->assertSame('/main/lp/lp_controller.php?id='.$category->getIid().'&action=view_category', $link);
|
|
}
|
|
|
|
public function testCreateWithUser(): void
|
|
{
|
|
$em = $this->getEntityManager();
|
|
$repo = self::getContainer()->get(CLpCategoryRepository::class);
|
|
|
|
$course = $this->createCourse('new');
|
|
$teacher = $this->createUser('teacher');
|
|
$student = $this->createUser('student');
|
|
$student2 = $this->createUser('student2');
|
|
|
|
$category = (new CLpCategory())
|
|
->setTitle('cat')
|
|
->setParent($course)
|
|
->setCreator($teacher)
|
|
;
|
|
$em->persist($category);
|
|
$em->flush();
|
|
|
|
$categoryRelUser = (new CLpCategoryRelUser())
|
|
->setCategory($category)
|
|
->setUser($teacher)
|
|
;
|
|
$em->persist($categoryRelUser);
|
|
$category->addUser($categoryRelUser);
|
|
$em->flush();
|
|
|
|
$this->assertSame(1, $repo->count([]));
|
|
|
|
/** @var CLpCategory $category */
|
|
$category = $repo->find($category->getIid());
|
|
|
|
$this->assertTrue($category->hasResourceNode());
|
|
$this->assertTrue($category->hasUserAdded($teacher));
|
|
$this->assertFalse($category->hasUserAdded($student));
|
|
}
|
|
}
|
|
|