1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<?php
/*
* This file is part of the Mercure Component project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Symfony\Component\Mercure\Tests;
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use Symfony\Component\Mercure\Update;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class UpdateTest extends TestCase
{
/**
* @dataProvider updateProvider
*
* @param mixed $topics
* @param mixed $data
*/
#[DataProvider('updateProvider')]
public function testCreateUpdate($topics, $data, bool $private = false, string $id = null, string $type = null, int $retry = null)
{
$update = new Update($topics, $data, $private, $id, $type, $retry);
$this->assertSame((array) $topics, $update->getTopics());
$this->assertSame($data, $update->getData());
$this->assertSame($private, $update->isPrivate());
$this->assertSame($id, $update->getId());
$this->assertSame($type, $update->getType());
$this->assertSame($retry, $update->getRetry());
}
public static function updateProvider(): array
{
return [
['http://example.com/foo', 'payload', true, 'id', 'type', 1936],
[['https://mercure.rocks', 'https://github.com/dunglas/mercure'], 'payload'],
];
}
public function testInvalidTopic()
{
$this->expectException(\InvalidArgumentException::class);
// @phpstan-ignore-next-line
new Update(1, 'data');
}
}
|