forked from Exercise/HTMLPurifierBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTMLPurifiersRegistryTest.php
More file actions
75 lines (62 loc) · 1.67 KB
/
Copy pathHTMLPurifiersRegistryTest.php
File metadata and controls
75 lines (62 loc) · 1.67 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
namespace Exercise\HTMLPurifierBundle\Tests;
use Exercise\HTMLPurifierBundle\HTMLPurifiersRegistry;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
class HTMLPurifiersRegistryTest extends TestCase
{
private $locator;
private $registry;
protected function setUp(): void
{
$this->locator = $this->createMock(ContainerInterface::class);
$this->registry = new HTMLPurifiersRegistry($this->locator);
}
protected function tearDown(): void
{
$this->registry = null;
$this->locator = null;
}
public function provideProfiles(): iterable
{
yield ['default'];
yield ['test'];
}
/**
* @dataProvider provideProfiles
*/
public function testHas($profile)
{
$this->locator->expects($this->once())
->method('has')
->with($profile)
->willReturn(true)
;
$this->assertTrue($this->registry->has($profile));
}
/**
* @dataProvider provideProfiles
*/
public function testHasNot($profile)
{
$this->locator->expects($this->once())
->method('has')
->with($profile)
->willReturn(false)
;
$this->assertFalse($this->registry->has($profile));
}
/**
* @dataProvider provideProfiles
*/
public function testGet($profile)
{
$purifier = $this->createMock(\HTMLPurifier::class);
$this->locator->expects($this->once())
->method('get')
->with($profile)
->willReturn($purifier)
;
$this->assertSame($purifier, $this->registry->get($profile));
}
}