TextExtensionTest.php
4.86 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
namespace Jasny\Twig;
use Jasny\Twig\TextExtension;
use Jasny\Twig\TestHelper;
/**
* @covers Jasny\Twig\TextExtension
*/
class TextExtensionTest extends \PHPUnit_Framework_TestCase
{
use TestHelper;
protected function getExtension()
{
return new TextExtension();
}
public function testParagraph()
{
$this->assertRender("<p>foo<br>\nbar</p>\n<p>monkey</p>", "{{ 'foo\nbar\n\nmonkey'|paragraph() }}");
}
public function testLine()
{
$this->assertRender("foo", "{{ 'foo\nbar\nbaz'|line() }}");
}
public function testLineTwo()
{
$this->assertRender("bar", "{{ 'foo\nbar\nbaz'|line(2) }}");
}
public function testLineToHigh()
{
$this->assertRender("", "{{ 'foo\nbar\nbaz'|line(100) }}");
}
public function testLess()
{
$this->assertRender("foo...", "{{ 'foo<!-- pagebreak -->baz'|less() }}");
}
public function testLessCustom()
{
$this->assertRender("foo..", "{{ 'fooXbarXbaz'|less('..', 'X') }}");
}
public function testLessNoPageBreak()
{
$this->assertRender("foo bar", "{{ 'foo bar'|less }}");
}
public function testTruncate()
{
$this->assertRender("foo...", "{{ 'foo bar baz'|truncate(6) }}");
}
public function testTruncateCustom()
{
$this->assertRender("foo ..", "{{ 'foo bar baz'|truncate(6, '..') }}");
}
public function testTruncateToHigh()
{
$this->assertRender("foo bar baz", "{{ 'foo bar baz'|truncate(100) }}");
}
public function testLinkify()
{
$this->assertRender(
'<a href="http://www.example.com">www.example.com</a>, color.bar and '
. '<a href="mailto:john@example.com">john@example.com</a>',
'{{ "www.example.com, color.bar and john@example.com"|linkify }}'
);
}
public function testLinkifyAll()
{
$this->assertRender(
'<a href="http://www.example.com">www.example.com</a>, <a href="http://color.bar">color.bar</a> and '
. '<a href="mailto:john@example.com">john@example.com</a>',
'{{ "www.example.com, color.bar and john@example.com"|linkify(["http", "mail"], [], "all") }}'
);
}
public function testLinkifyHttps()
{
$this->assertRender(
'<a href="https://www.example.com">www.example.com</a>',
'{{ "www.example.com"|linkify("https") }}'
);
}
public function testLinkifyMail()
{
$this->assertRender(
'<a href="mailto:john@example.com">john@example.com</a> and '
. '<a href="mailto:jeff@example.com">jeff@example.com</a>',
'{{ "john@example.com and jeff@example.com"|linkify }}'
);
}
public function testLinkifyFtp()
{
$this->assertRender(
'<a href="ftp://www.example.com">www.example.com</a>',
'{{ "ftp://www.example.com"|linkify("ftp") }}'
);
}
public function testLinkifyFtpAll()
{
$this->assertRender(
'<a href="ftp://www.example.com">www.example.com</a>',
'{{ "www.example.com"|linkify("ftp", [], "all") }}'
);
}
public function testLinkifyOther()
{
$this->assertRender(
'<a href="foo:abc.def.hif">abc.def.hif</a>',
'{{ "foo:abc.def.hif"|linkify("foo") }}'
);
}
public function testLinkifyOtherAll()
{
$this->assertRender(
'<a href="foo:abc.def.hif">abc.def.hif</a>',
'{{ "abc.def.hif"|linkify("foo", [], "all") }}'
);
}
public function testLinkifyWithAttributes()
{
$this->assertRender(
'<a foo="bar" color="blue" href="http://www.example.com">www.example.com</a> and '
. '<a foo="bar" color="blue" href="mailto:john@example.com">john@example.com</a>',
'{{ "www.example.com and john@example.com"|linkify(["http", "mail"], {foo: "bar", color: "blue"}) }}'
);
}
public function testLinkifyWithExistingLink()
{
$this->assertRender(
'<a href="http://www.example.com">www.example.com</a> and '
. '<a href="http://www.example.net">www.example.net</a>',
'{{ "<a href=\\"http://www.example.com\\">www.example.com</a> and www.example.net"|linkify }}'
);
}
public function filterProvider()
{
return [
['paragraph'],
['line'],
['less'],
['truncate'],
['linkify']
];
}
/**
* @dataProvider filterProvider
*
* @param string $filter
*/
public function testWithNull($filter)
{
$this->assertRender('-', '{{ null|' . $filter . '("//")|default("-") }}');
}
}