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.
61 lines
2.0 KiB
61 lines
2.0 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\Tests\CourseBundle\Repository;
|
|
|
|
use Chamilo\CoreBundle\Repository\Node\CourseRepository;
|
|
use Chamilo\CourseBundle\Entity\CGlossary;
|
|
use Chamilo\CourseBundle\Repository\CGlossaryRepository;
|
|
use Chamilo\Tests\AbstractApiTest;
|
|
use Chamilo\Tests\ChamiloTestTrait;
|
|
use Symfony\Component\Routing\RouterInterface;
|
|
|
|
class CGlossaryRepositoryTest extends AbstractApiTest
|
|
{
|
|
use ChamiloTestTrait;
|
|
|
|
public function testCreate(): void
|
|
{
|
|
$em = $this->getEntityManager();
|
|
$glossaryRepo = self::getContainer()->get(CGlossaryRepository::class);
|
|
$courseRepo = self::getContainer()->get(CourseRepository::class);
|
|
|
|
$course = $this->createCourse('new');
|
|
$teacher = $this->createUser('teacher');
|
|
|
|
$glossary = (new CGlossary())
|
|
->setTitle('glossary')
|
|
->setDescription('desc')
|
|
->setParent($course)
|
|
->setCreator($teacher)
|
|
->addCourseLink($course)
|
|
;
|
|
$this->assertHasNoEntityViolations($glossary);
|
|
$em->persist($glossary);
|
|
$em->flush();
|
|
|
|
$this->assertSame('glossary', (string) $glossary);
|
|
$this->assertSame('desc', $glossary->getDescription());
|
|
$this->assertSame($glossary->getResourceIdentifier(), $glossary->getIid());
|
|
|
|
$router = $this->getContainer()->get(RouterInterface::class);
|
|
|
|
$link = $glossaryRepo->getLink($glossary, $router);
|
|
|
|
$this->assertSame($link, '/main/glossary/index.php?glossary_id='.$glossary->getIid());
|
|
|
|
$link = $glossaryRepo->getLink($glossary, $router, ['extra' => 'extra']);
|
|
$this->assertSame($link, '/main/glossary/index.php?glossary_id='.$glossary->getIid().'&extra=extra');
|
|
|
|
$this->assertSame(1, $glossaryRepo->count([]));
|
|
|
|
$courseRepo->delete($course);
|
|
|
|
// A glossary is a global resource, so don't cascade-delete it
|
|
$this->assertSame(1, $glossaryRepo->count([]));
|
|
$this->assertSame(0, $courseRepo->count([]));
|
|
}
|
|
}
|
|
|