1
|
|
|
<?php |
2
|
|
|
namespace Malezha\Menu\Tests; |
3
|
|
|
|
4
|
|
|
use Illuminate\Contracts\Container\Container; |
5
|
|
|
use Malezha\Menu\Contracts\Attributes; |
6
|
|
|
use Malezha\Menu\Contracts\Builder; |
7
|
|
|
use Malezha\Menu\Contracts\Item; |
8
|
|
|
use Malezha\Menu\Contracts\MenuRender; |
9
|
|
|
use Malezha\Menu\Render\Basic; |
10
|
|
|
use Malezha\Menu\Render\Blade; |
11
|
|
|
|
12
|
|
|
class RenderTest extends TestCase |
13
|
|
|
{ |
14
|
|
|
protected function getBuilder() |
15
|
|
|
{ |
16
|
|
|
/** @var Builder $builder */ |
17
|
|
|
$builder = $this->app->make(Builder::class, [ |
18
|
|
|
'name' => 'test', |
19
|
|
|
'activeAttributes' => $this->app->make(Attributes::class, ['attributes' => ['class' => 'active']]), |
20
|
|
|
'attributes' => $this->app->make(Attributes::class, ['attributes' => ['class' => 'menu']]), |
21
|
|
|
]); |
22
|
|
|
$index = $builder->add('index', 'Index Page', url('/')); |
23
|
|
|
$index->getLink()->getAttributes()->push(['class' => 'menu-link']); |
24
|
|
|
|
25
|
|
|
$builder->group('orders', function(Item $item) { |
26
|
|
|
$item->getAttributes()->push(['class' => 'child-menu']); |
27
|
|
|
|
28
|
|
|
$link = $item->getLink(); |
29
|
|
|
$link->setTitle('Orders'); |
30
|
|
|
$link->setUrl('javascript:;'); |
31
|
|
View Code Duplication |
}, function(Builder $menu) { |
|
|
|
|
32
|
|
|
$menu->add('all', 'All', url('/orders/all')); |
|
|
|
|
33
|
|
|
$menu->add('type_1', 'Type 1', url('/orders/1'), [], ['class' => 'text-color-red']); |
|
|
|
|
34
|
|
|
|
35
|
|
|
$menu->add('type_2', 'Type 2', url('/orders/2'), [], [], function(Item $item) { |
|
|
|
|
36
|
|
|
$item->getLink()->getAttributes()->push(['data-attribute' => 'value']); |
37
|
|
|
}); |
38
|
|
|
}); |
39
|
|
|
|
40
|
|
|
return $builder; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
protected function getStub() |
44
|
|
|
{ |
45
|
|
|
return $file = file_get_contents(__DIR__ . '/stub/menu.html'); |
|
|
|
|
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
protected function makeTest($render) |
49
|
|
|
{ |
50
|
|
|
$this->app->instance('menu.render', $render); |
51
|
|
|
$this->app->alias('menu.render', MenuRender::class); |
52
|
|
|
|
53
|
|
|
$builder = $this->getBuilder(); |
54
|
|
|
$stub = $this->getStub(); |
55
|
|
|
$this->assertAttributeInstanceOf(get_class($render), 'viewFactory', $builder); |
56
|
|
|
$this->assertEquals($stub, $builder->render()); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
public function testBladeRender() |
60
|
|
|
{ |
61
|
|
|
$this->makeTest(new Blade($this->app)); |
62
|
|
|
|
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function testBasicRender() |
66
|
|
|
{ |
67
|
|
|
$this->makeTest(new Basic($this->app)); |
68
|
|
|
} |
69
|
|
|
} |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.