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.
49 lines
1.4 KiB
49 lines
1.4 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\Tests\CourseBundle\Repository;
|
|
|
|
use Chamilo\CourseBundle\Entity\CLink;
|
|
use Chamilo\CourseBundle\Repository\CLinkRepository;
|
|
use Chamilo\Tests\AbstractApiTest;
|
|
use Chamilo\Tests\ChamiloTestTrait;
|
|
|
|
class CLinkRepositoryTest extends AbstractApiTest
|
|
{
|
|
use ChamiloTestTrait;
|
|
|
|
public function testCreate(): void
|
|
{
|
|
$em = $this->getEntityManager();
|
|
$repo = self::getContainer()->get(CLinkRepository::class);
|
|
|
|
$course = $this->createCourse('new');
|
|
$teacher = $this->createUser('teacher');
|
|
|
|
$link = (new CLink())
|
|
->setUrl('https://chamilo.org')
|
|
->setTitle('link')
|
|
->setDescription('desc')
|
|
->setTarget('_blank')
|
|
->setCategory(null)
|
|
->setParent($course)
|
|
->setCreator($teacher)
|
|
;
|
|
|
|
$this->assertHasNoEntityViolations($link);
|
|
$em->persist($link);
|
|
$em->flush();
|
|
|
|
$this->assertSame('link', (string) $link);
|
|
$this->assertSame($link->getResourceIdentifier(), $link->getIid());
|
|
$this->assertSame('https://chamilo.org', $link->getUrl());
|
|
$this->assertSame('link', $link->getTitle());
|
|
$this->assertSame('desc', $link->getDescription());
|
|
$this->assertSame('_blank', $link->getTarget());
|
|
|
|
$this->assertSame(1, $repo->count([]));
|
|
}
|
|
}
|
|
|