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.
47 lines
1.4 KiB
47 lines
1.4 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\CThematic;
|
|
use Chamilo\CourseBundle\Repository\CThematicRepository;
|
|
use Chamilo\Tests\AbstractApiTest;
|
|
use Chamilo\Tests\ChamiloTestTrait;
|
|
|
|
class CThematicRepositoryTest extends AbstractApiTest
|
|
{
|
|
use ChamiloTestTrait;
|
|
|
|
public function testCreate(): void
|
|
{
|
|
$em = $this->getEntityManager();
|
|
$courseRepo = self::getContainer()->get(CourseRepository::class);
|
|
$repo = self::getContainer()->get(CThematicRepository::class);
|
|
|
|
$course = $this->createCourse('new');
|
|
$teacher = $this->createUser('teacher');
|
|
|
|
$thematic = (new CThematic())
|
|
->setTitle('thematic')
|
|
->setParent($course)
|
|
->setCreator($teacher)
|
|
->addCourseLink($course)
|
|
;
|
|
$this->assertHasNoEntityViolations($thematic);
|
|
$em->persist($thematic);
|
|
$em->flush();
|
|
|
|
$this->assertSame('thematic', (string) $thematic);
|
|
$this->assertSame(1, $repo->count([]));
|
|
|
|
$courseRepo->delete($course);
|
|
|
|
// Fixme Thematic progress is highly bound to the course and should be cascade-deleted with the course
|
|
// $this->assertSame(0, $repo->count([]));
|
|
$this->assertSame(0, $courseRepo->count([]));
|
|
}
|
|
}
|
|
|