HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/timetracker.panomity.com/tests/Repository/TagRepositoryTest.php
<?php

/*
 * This file is part of the Kimai time-tracking app.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace App\Tests\Repository;

use App\Entity\Tag;
use App\Repository\TagRepository;
use App\Tests\DataFixtures\TagFixtures;

/**
 * @covers \App\Repository\TagRepository
 * @group integration
 */
class TagRepositoryTest extends AbstractRepositoryTest
{
    protected function setUp(): void
    {
        parent::setUp();
        $em = $this->getEntityManager();
        $data = new TagFixtures();
        $data->setTagArray(['Test', 'Travel', '#2018-001', '#2018-002', '#2018-003', '#2018-004', '#2018-005', 'Administration', 'Support', 'PR', '#2018-012']);
        $this->importFixture($data);
    }

    public function testFindAllTagNames()
    {
        $em = $this->getEntityManager();
        /** @var TagRepository $repository */
        $repository = $em->getRepository(Tag::class);

        $result = $repository->findAllTagNames('2018');
        $this->assertIsArray($result);
        $this->assertNotEmpty($result);
        $this->assertEquals(6, \count($result));
        $this->assertEquals('#2018-001', $result[0]);
        $this->assertEquals('#2018-002', $result[1]);
        $this->assertEquals('#2018-003', $result[2]);
        $this->assertEquals('#2018-004', $result[3]);
        $this->assertEquals('#2018-005', $result[4]);
        $this->assertEquals('#2018-012', $result[5]);
    }

    public function testFindNoTagNames()
    {
        $em = $this->getEntityManager();
        /** @var TagRepository $repository */
        $repository = $em->getRepository(Tag::class);

        $result = $repository->findAllTagNames('Nothing');
        $this->assertIsArray($result);
        $this->assertEmpty($result);
        $this->assertEquals(0, \count($result));
    }
}