forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBladeCustomTest.php
More file actions
237 lines (199 loc) · 8.2 KB
/
BladeCustomTest.php
File metadata and controls
237 lines (199 loc) · 8.2 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
namespace Illuminate\Tests\View\Blade;
use InvalidArgumentException;
class BladeCustomTest extends AbstractBladeTestCase
{
public function testCustomPhpCodeIsCorrectlyHandled()
{
$this->assertSame('<?php if($test): ?> <?php @show(\'test\'); ?> <?php endif; ?>', $this->compiler->compileString("@if(\$test) <?php @show('test'); ?> @endif"));
}
public function testMixingYieldAndEcho()
{
$this->assertSame('<?php echo $__env->yieldContent(\'title\'); ?> - <?php echo e(Config::get(\'site.title\')); ?>', $this->compiler->compileString("@yield('title') - {{Config::get('site.title')}}"));
}
public function testCustomExtensionsAreCompiled()
{
$this->compiler->extend(function ($value) {
return str_replace('foo', 'bar', $value);
});
$this->assertSame('bar', $this->compiler->compileString('foo'));
}
public function testCustomStatements()
{
$this->assertCount(0, $this->compiler->getCustomDirectives());
$this->compiler->directive('customControl', function ($expression) {
return "<?php echo custom_control({$expression}); ?>";
});
$this->assertCount(1, $this->compiler->getCustomDirectives());
$string = '@if($foo)
@customControl(10, $foo, \'bar\')
@endif';
$expected = '<?php if($foo): ?>
<?php echo custom_control(10, $foo, \'bar\'); ?>
<?php endif; ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomShortStatements()
{
$this->compiler->directive('customControl', function ($expression) {
return '<?php echo custom_control(); ?>';
});
$string = '@customControl';
$expected = '<?php echo custom_control(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testValidCustomNames()
{
$this->assertNull($this->compiler->directive('custom', function () {
//
}));
$this->assertNull($this->compiler->directive('custom_custom', function () {
//
}));
$this->assertNull($this->compiler->directive('customCustom', function () {
//
}));
$this->assertNull($this->compiler->directive('custom::custom', function () {
//
}));
}
public function testInvalidCustomNames()
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('The directive name [custom-custom] is not valid.');
$this->compiler->directive('custom-custom', function () {
//
});
}
public function testInvalidCustomNames2()
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('The directive name [custom:custom] is not valid.');
$this->compiler->directive('custom:custom', function () {
//
});
}
public function testCustomExtensionOverwritesCore()
{
$this->compiler->directive('foreach', function ($expression) {
return '<?php custom(); ?>';
});
$string = '@foreach';
$expected = '<?php custom(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomConditions()
{
$this->compiler->if('custom', function ($user) {
return true;
});
$string = '@custom($user)
@endcustom';
$expected = '<?php if (\Illuminate\Support\Facades\Blade::check(\'custom\', $user)): ?>
<?php endif; ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomIfElseConditions()
{
$this->compiler->if('custom', function ($anything) {
return true;
});
$string = '@custom($user)
@elsecustom($product)
@else
@endcustom';
$expected = '<?php if (\Illuminate\Support\Facades\Blade::check(\'custom\', $user)): ?>
<?php elseif (\Illuminate\Support\Facades\Blade::check(\'custom\', $product)): ?>
<?php else: ?>
<?php endif; ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomUnlessConditions()
{
$this->compiler->if('custom', function ($anything) {
return true;
});
$string = '@unlesscustom($user)
@endcustom';
$expected = '<?php if (! \Illuminate\Support\Facades\Blade::check(\'custom\', $user)): ?>
<?php endif; ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomConditionsAccepts0AsArgument()
{
$this->compiler->if('custom', function ($number) {
return true;
});
$string = '@custom(0)
@elsecustom(0)
@endcustom';
$expected = '<?php if (\Illuminate\Support\Facades\Blade::check(\'custom\', 0)): ?>
<?php elseif (\Illuminate\Support\Facades\Blade::check(\'custom\', 0)): ?>
<?php endif; ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomComponents()
{
$this->compiler->component('app.components.alert', 'alert');
$string = '@alert
@endalert';
$expected = '<?php $__env->startComponent(\'app.components.alert\'); ?>
<?php echo $__env->renderComponent(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomComponentsWithSlots()
{
$this->compiler->component('app.components.alert', 'alert');
$string = '@alert([\'type\' => \'danger\'])
@endalert';
$expected = '<?php $__env->startComponent(\'app.components.alert\', [\'type\' => \'danger\']); ?>
<?php echo $__env->renderComponent(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomComponentsDefaultAlias()
{
$this->compiler->component('app.components.alert');
$string = '@alert
@endalert';
$expected = '<?php $__env->startComponent(\'app.components.alert\'); ?>
<?php echo $__env->renderComponent(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomComponentsWithExistingDirective()
{
$this->compiler->component('app.components.foreach');
$string = '@foreach
@endforeach';
$expected = '<?php $__env->startComponent(\'app.components.foreach\'); ?>
<?php echo $__env->renderComponent(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomIncludes()
{
$this->compiler->include('app.includes.input', 'input');
$string = '@input';
$expected = '<?php echo $__env->make(\'app.includes.input\', [], \Illuminate\Support\Arr::except(get_defined_vars(), [\'__data\', \'__path\']))->render(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomIncludesWithData()
{
$this->compiler->include('app.includes.input', 'input');
$string = '@input([\'type\' => \'email\'])';
$expected = '<?php echo $__env->make(\'app.includes.input\', [\'type\' => \'email\'], \Illuminate\Support\Arr::except(get_defined_vars(), [\'__data\', \'__path\']))->render(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomIncludesDefaultAlias()
{
$this->compiler->include('app.includes.input');
$string = '@input';
$expected = '<?php echo $__env->make(\'app.includes.input\', [], \Illuminate\Support\Arr::except(get_defined_vars(), [\'__data\', \'__path\']))->render(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
public function testCustomIncludesWithExistingDirective()
{
$this->compiler->include('app.includes.foreach');
$string = '@foreach';
$expected = '<?php echo $__env->make(\'app.includes.foreach\', [], \Illuminate\Support\Arr::except(get_defined_vars(), [\'__data\', \'__path\']))->render(); ?>';
$this->assertEquals($expected, $this->compiler->compileString($string));
}
}