-
-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathNestedTreeModelTest.php
158 lines (130 loc) · 4.91 KB
/
NestedTreeModelTest.php
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
<?php
namespace System\Tests\Plugins\Database;
use System\Tests\Bootstrap\PluginTestCase;
use Database\Tester\Models\CategoryNested;
use Model;
class NestedTreeModelTest extends PluginTestCase
{
public function setUp() : void
{
parent::setUp();
include_once base_path() . '/modules/system/tests/fixtures/plugins/database/tester/models/Category.php';
$this->runPluginRefreshCommand('Database.Tester');
$this->seedSampleTree();
}
public function testGetNested()
{
$items = CategoryNested::getNested();
// Eager loaded
$items->each(function ($item) {
$this->assertTrue($item->relationLoaded('children'));
});
$this->assertEquals(2, $items->count());
}
public function testGetAllRoot()
{
$items = CategoryNested::getAllRoot();
// Not eager loaded
$items->each(function ($item) {
$this->assertFalse($item->relationLoaded('children'));
});
$this->assertEquals(2, $items->count());
}
public function testListsNested()
{
$array = CategoryNested::listsNested('name', 'id');
$this->assertEquals([
1 => 'Category Orange',
2 => ' Autumn Leaves',
3 => ' September',
4 => ' October',
5 => ' November',
6 => ' Summer Breeze',
7 => 'Category Green',
8 => ' Winter Snow',
9 => ' Spring Trees'
], $array);
CategoryNested::flushDuplicateCache();
$array = CategoryNested::listsNested('name', 'id', '--');
$this->assertEquals([
1 => 'Category Orange',
2 => '--Autumn Leaves',
3 => '----September',
4 => '----October',
5 => '----November',
6 => '--Summer Breeze',
7 => 'Category Green',
8 => '--Winter Snow',
9 => '--Spring Trees'
], $array);
CategoryNested::flushDuplicateCache();
$array = CategoryNested::listsNested('description', 'name', '**');
$this->assertEquals([
'Category Orange' => 'A root level test category',
'Autumn Leaves' => '**Disccusion about the season of falling leaves.',
'September' => '****The start of the fall season.',
'October' => '****The middle of the fall season.',
'November' => '****The end of the fall season.',
'Summer Breeze' => '**Disccusion about the wind at the ocean.',
'Category Green' => 'A root level test category',
'Winter Snow' => '**Disccusion about the frosty snow flakes.',
'Spring Trees' => '**Disccusion about the blooming gardens.'
], $array);
}
public function testListsNestedFromCollection()
{
$array = CategoryNested::get()->listsNested('custom_name', 'id', '...');
$this->assertEquals([
1 => 'Category Orange (#1)',
2 => '...Autumn Leaves (#2)',
3 => '......September (#3)',
4 => '......October (#4)',
5 => '......November (#5)',
6 => '...Summer Breeze (#6)',
7 => 'Category Green (#7)',
8 => '...Winter Snow (#8)',
9 => '...Spring Trees (#9)'
], $array);
}
public function seedSampleTree()
{
Model::unguard();
$orange = CategoryNested::create([
'name' => 'Category Orange',
'description' => 'A root level test category',
]);
$autumn = $orange->children()->create([
'name' => 'Autumn Leaves',
'description' => 'Disccusion about the season of falling leaves.'
]);
$autumn->children()->create([
'name' => 'September',
'description' => 'The start of the fall season.'
]);
$autumn->children()->create([
'name' => 'October',
'description' => 'The middle of the fall season.'
]);
$autumn->children()->create([
'name' => 'November',
'description' => 'The end of the fall season.'
]);
$orange->children()->create([
'name' => 'Summer Breeze',
'description' => 'Disccusion about the wind at the ocean.'
]);
$green = CategoryNested::create([
'name' => 'Category Green',
'description' => 'A root level test category',
]);
$green->children()->create([
'name' => 'Winter Snow',
'description' => 'Disccusion about the frosty snow flakes.'
]);
$green->children()->create([
'name' => 'Spring Trees',
'description' => 'Disccusion about the blooming gardens.'
]);
Model::reguard();
}
}