1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace BootstrapComponents\Tests\Unit\Components; |
4
|
|
|
|
5
|
|
|
use BootstrapComponents\Components\Badge; |
6
|
|
|
use BootstrapComponents\Tests\Unit\ComponentsTestBase; |
7
|
|
|
use \MWException; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* @covers \BootstrapComponents\Components\Badge |
11
|
|
|
* |
12
|
|
|
* @ingroup Test |
13
|
|
|
* |
14
|
|
|
* @group extension-bootstrap-components |
15
|
|
|
* @group mediawiki-databaseless |
16
|
|
|
* |
17
|
|
|
* @license GNU GPL v3+ |
18
|
|
|
* |
19
|
|
|
* @since 1.0 |
20
|
|
|
* @author Tobias Oetterer |
21
|
|
|
*/ |
22
|
|
|
class BadgeTest extends ComponentsTestBase { |
23
|
|
|
|
24
|
|
|
private $input = 'Badge test text'; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* @throws \MWException |
28
|
|
|
*/ |
29
|
|
|
public function testCanConstruct() { |
30
|
|
|
|
31
|
|
|
$this->assertInstanceOf( |
32
|
|
|
'\\BootstrapComponents\\Components\\Badge', |
33
|
|
|
new Badge( |
34
|
|
|
$this->getComponentLibrary(), |
35
|
|
|
$this->getParserOutputHelper(), |
36
|
|
|
$this->getNestingController() |
37
|
|
|
) |
38
|
|
|
); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @param string $input |
43
|
|
|
* @param array $arguments |
44
|
|
|
* @param string $expectedOutput |
45
|
|
|
* |
46
|
|
|
* @dataProvider placeMeArgumentsProvider |
47
|
|
|
* @throws MWException |
48
|
|
|
*/ |
49
|
|
|
public function testCanRender( $input, $arguments, $expectedOutput ) { |
50
|
|
|
$instance = new Badge( |
51
|
|
|
$this->getComponentLibrary(), |
52
|
|
|
$this->getParserOutputHelper(), |
53
|
|
|
$this->getNestingController() |
54
|
|
|
); |
55
|
|
|
|
56
|
|
|
$parserRequest = $this->buildParserRequest( $input, $arguments ); |
57
|
|
|
|
58
|
|
|
/** @noinspection PhpParamsInspection */ |
59
|
|
|
$generatedOutput = $instance->parseComponent( $parserRequest ); |
60
|
|
|
|
61
|
|
|
$this->assertEquals( $expectedOutput, $generatedOutput ); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* @return array |
66
|
|
|
*/ |
67
|
|
|
public function placeMeArgumentsProvider() { |
68
|
|
|
return [ |
69
|
|
|
'simple' => [ |
70
|
|
|
$this->input, |
71
|
|
|
[], |
72
|
|
|
'<span class="badge" id="bsc_badge_NULL">' . $this->input . '</span>', |
73
|
|
|
], |
74
|
|
|
'empty' => [ |
75
|
|
|
'', |
76
|
|
|
[], |
77
|
|
|
'bootstrap-components-badge-content-missing', |
78
|
|
|
], |
79
|
|
|
'manual id' => [ |
80
|
|
|
$this->input, |
81
|
|
|
[ 'id' => 'book' ], |
82
|
|
|
'<span class="badge" id="book">' . $this->input . '</span>', |
83
|
|
|
], |
84
|
|
|
'style and class' => [ |
85
|
|
|
$this->input, |
86
|
|
|
[ 'class' => 'dummy nice', 'style' => 'float:right;background-color:#80266e' ], |
87
|
|
|
'<span class="badge dummy nice" style="float:right;background-color:#80266e" id="bsc_badge_NULL">' . $this->input . '</span>', |
88
|
|
|
], |
89
|
|
|
]; |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|