| Total Complexity | 56 | 
| Total Lines | 2638 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
Complex classes like AdminTest often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AdminTest, and based on these observations, apply Extract Interface, too.
| 1 | <?php  | 
            ||
| 91 | class AdminTest extends TestCase  | 
            ||
| 92 | { | 
            ||
| 93 | protected $cacheTempFolder;  | 
            ||
| 94 | |||
| 95 | protected function setUp(): void  | 
            ||
| 96 |     { | 
            ||
| 97 |         $this->cacheTempFolder = sprintf('%s/sonata_test_route', sys_get_temp_dir()); | 
            ||
| 98 | $filesystem = new Filesystem();  | 
            ||
| 99 | $filesystem->remove($this->cacheTempFolder);  | 
            ||
| 100 | }  | 
            ||
| 101 | |||
| 102 | /**  | 
            ||
| 103 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::__construct  | 
            ||
| 104 | */  | 
            ||
| 105 | public function testConstructor(): void  | 
            ||
| 106 |     { | 
            ||
| 107 | $class = 'Application\Sonata\NewsBundle\Entity\Post';  | 
            ||
| 108 | $baseControllerName = 'Sonata\NewsBundle\Controller\PostAdminController';  | 
            ||
| 109 | |||
| 110 |         $admin = new PostAdmin('sonata.post.admin.post', $class, $baseControllerName); | 
            ||
| 111 | $this->assertInstanceOf(AbstractAdmin::class, $admin);  | 
            ||
| 112 | $this->assertSame($class, $admin->getClass());  | 
            ||
| 113 | $this->assertSame($baseControllerName, $admin->getBaseControllerName());  | 
            ||
| 114 | }  | 
            ||
| 115 | |||
| 116 | public function testGetClass(): void  | 
            ||
| 117 |     { | 
            ||
| 118 | $class = Post::class;  | 
            ||
| 119 | $baseControllerName = 'Sonata\NewsBundle\Controller\PostAdminController';  | 
            ||
| 120 | |||
| 121 |         $admin = new PostAdmin('sonata.post.admin.post', $class, $baseControllerName); | 
            ||
| 122 | |||
| 123 | $admin->setModelManager($this->getMockForAbstractClass(ModelManagerInterface::class));  | 
            ||
| 124 | |||
| 125 | $admin->setSubject(new BlogPost());  | 
            ||
| 126 | $this->assertSame(BlogPost::class, $admin->getClass());  | 
            ||
| 127 | |||
| 128 | $admin->setSubClasses(['foo']);  | 
            ||
| 129 | $this->assertSame(BlogPost::class, $admin->getClass());  | 
            ||
| 130 | |||
| 131 | $admin->setSubject(null);  | 
            ||
| 132 | $admin->setSubClasses([]);  | 
            ||
| 133 | $this->assertSame($class, $admin->getClass());  | 
            ||
| 134 | |||
| 135 | $admin->setSubClasses(['foo' => 'bar']);  | 
            ||
| 136 | $admin->setRequest(new Request(['subclass' => 'foo']));  | 
            ||
| 137 |         $this->assertSame('bar', $admin->getClass()); | 
            ||
| 138 | }  | 
            ||
| 139 | |||
| 140 | public function testGetClassException(): void  | 
            ||
| 141 |     { | 
            ||
| 142 | $this->expectException(\RuntimeException::class);  | 
            ||
| 143 |         $this->expectExceptionMessage('Feature not implemented: an embedded admin cannot have subclass'); | 
            ||
| 144 | |||
| 145 | $class = 'Application\Sonata\NewsBundle\Entity\Post';  | 
            ||
| 146 | $baseControllerName = 'Sonata\NewsBundle\Controller\PostAdminController';  | 
            ||
| 147 | |||
| 148 |         $admin = new PostAdmin('sonata.post.admin.post', $class, $baseControllerName); | 
            ||
| 149 | $admin->setParentFieldDescription(new FieldDescription());  | 
            ||
| 150 | $admin->setSubClasses(['foo' => 'bar']);  | 
            ||
| 151 | $admin->setRequest(new Request(['subclass' => 'foo']));  | 
            ||
| 152 | $admin->getClass();  | 
            ||
| 153 | }  | 
            ||
| 154 | |||
| 155 | public function testCheckAccessThrowsExceptionOnMadeUpAction(): void  | 
            ||
| 156 |     { | 
            ||
| 157 | $admin = new PostAdmin(  | 
            ||
| 158 | 'sonata.post.admin.post',  | 
            ||
| 159 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 160 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 161 | );  | 
            ||
| 162 | $this->expectException(  | 
            ||
| 163 | \InvalidArgumentException::class  | 
            ||
| 164 | );  | 
            ||
| 165 | $this->expectExceptionMessage(  | 
            ||
| 166 | 'Action "made-up" could not be found'  | 
            ||
| 167 | );  | 
            ||
| 168 |         $admin->checkAccess('made-up'); | 
            ||
| 169 | }  | 
            ||
| 170 | |||
| 171 | public function testCheckAccessThrowsAccessDeniedException(): void  | 
            ||
| 172 |     { | 
            ||
| 173 | $admin = new PostAdmin(  | 
            ||
| 174 | 'sonata.post.admin.post',  | 
            ||
| 175 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 176 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 177 | );  | 
            ||
| 178 | $securityHandler = $this->prophesize(SecurityHandlerInterface::class);  | 
            ||
| 179 | $securityHandler->isGranted($admin, 'CUSTOM_ROLE', $admin)->willReturn(true);  | 
            ||
| 180 | $securityHandler->isGranted($admin, 'EXTRA_CUSTOM_ROLE', $admin)->willReturn(false);  | 
            ||
| 181 | $customExtension = $this->prophesize(AbstractAdminExtension::class);  | 
            ||
| 182 | $customExtension->getAccessMapping($admin)->willReturn(  | 
            ||
| 183 | ['custom_action' => ['CUSTOM_ROLE', 'EXTRA_CUSTOM_ROLE']]  | 
            ||
| 184 | );  | 
            ||
| 185 | $admin->addExtension($customExtension->reveal());  | 
            ||
| 186 | $admin->setSecurityHandler($securityHandler->reveal());  | 
            ||
| 187 | $this->expectException(  | 
            ||
| 188 | AccessDeniedException::class  | 
            ||
| 189 | );  | 
            ||
| 190 | $this->expectExceptionMessage(  | 
            ||
| 191 | 'Access Denied to the action custom_action and role EXTRA_CUSTOM_ROLE'  | 
            ||
| 192 | );  | 
            ||
| 193 |         $admin->checkAccess('custom_action'); | 
            ||
| 194 | }  | 
            ||
| 195 | |||
| 196 | public function testHasAccessOnMadeUpAction(): void  | 
            ||
| 197 |     { | 
            ||
| 198 | $admin = new PostAdmin(  | 
            ||
| 199 | 'sonata.post.admin.post',  | 
            ||
| 200 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 201 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 202 | );  | 
            ||
| 203 | |||
| 204 |         $this->assertFalse($admin->hasAccess('made-up')); | 
            ||
| 205 | }  | 
            ||
| 206 | |||
| 207 | public function testHasAccess(): void  | 
            ||
| 208 |     { | 
            ||
| 209 | $admin = new PostAdmin(  | 
            ||
| 210 | 'sonata.post.admin.post',  | 
            ||
| 211 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 212 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 213 | );  | 
            ||
| 214 | $securityHandler = $this->prophesize(SecurityHandlerInterface::class);  | 
            ||
| 215 | $securityHandler->isGranted($admin, 'CUSTOM_ROLE', $admin)->willReturn(true);  | 
            ||
| 216 | $securityHandler->isGranted($admin, 'EXTRA_CUSTOM_ROLE', $admin)->willReturn(false);  | 
            ||
| 217 | $customExtension = $this->prophesize(AbstractAdminExtension::class);  | 
            ||
| 218 | $customExtension->getAccessMapping($admin)->willReturn(  | 
            ||
| 219 | ['custom_action' => ['CUSTOM_ROLE', 'EXTRA_CUSTOM_ROLE']]  | 
            ||
| 220 | );  | 
            ||
| 221 | $admin->addExtension($customExtension->reveal());  | 
            ||
| 222 | $admin->setSecurityHandler($securityHandler->reveal());  | 
            ||
| 223 | |||
| 224 |         $this->assertFalse($admin->hasAccess('custom_action')); | 
            ||
| 225 | }  | 
            ||
| 226 | |||
| 227 | public function testHasAccessAllowsAccess(): void  | 
            ||
| 228 |     { | 
            ||
| 229 | $admin = new PostAdmin(  | 
            ||
| 230 | 'sonata.post.admin.post',  | 
            ||
| 231 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 232 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 233 | );  | 
            ||
| 234 | $securityHandler = $this->prophesize(SecurityHandlerInterface::class);  | 
            ||
| 235 | $securityHandler->isGranted($admin, 'CUSTOM_ROLE', $admin)->willReturn(true);  | 
            ||
| 236 | $securityHandler->isGranted($admin, 'EXTRA_CUSTOM_ROLE', $admin)->willReturn(true);  | 
            ||
| 237 | $customExtension = $this->prophesize(AbstractAdminExtension::class);  | 
            ||
| 238 | $customExtension->getAccessMapping($admin)->willReturn(  | 
            ||
| 239 | ['custom_action' => ['CUSTOM_ROLE', 'EXTRA_CUSTOM_ROLE']]  | 
            ||
| 240 | );  | 
            ||
| 241 | $admin->addExtension($customExtension->reveal());  | 
            ||
| 242 | $admin->setSecurityHandler($securityHandler->reveal());  | 
            ||
| 243 | |||
| 244 |         $this->assertTrue($admin->hasAccess('custom_action')); | 
            ||
| 245 | }  | 
            ||
| 246 | |||
| 247 | public function testHasAccessAllowsAccessEditAction(): void  | 
            ||
| 248 |     { | 
            ||
| 249 | $admin = new PostAdmin(  | 
            ||
| 250 | 'sonata.post.admin.post',  | 
            ||
| 251 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 252 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 253 | );  | 
            ||
| 254 | $securityHandler = $this->prophesize(SecurityHandlerInterface::class);  | 
            ||
| 255 | $securityHandler->isGranted($admin, 'EDIT_ROLE', $admin)->willReturn(true);  | 
            ||
| 256 | $customExtension = $this->prophesize(AbstractAdminExtension::class);  | 
            ||
| 257 | $customExtension->getAccessMapping($admin)->willReturn(  | 
            ||
| 258 | ['edit_action' => ['EDIT_ROLE']]  | 
            ||
| 259 | );  | 
            ||
| 260 | $admin->addExtension($customExtension->reveal());  | 
            ||
| 261 | $admin->setSecurityHandler($securityHandler->reveal());  | 
            ||
| 262 | |||
| 263 |         $this->assertTrue($admin->hasAccess('edit_action')); | 
            ||
| 264 | }  | 
            ||
| 265 | |||
| 266 | /**  | 
            ||
| 267 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::hasChild  | 
            ||
| 268 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::addChild  | 
            ||
| 269 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getChild  | 
            ||
| 270 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::isChild  | 
            ||
| 271 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::hasChildren  | 
            ||
| 272 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getChildren  | 
            ||
| 273 | */  | 
            ||
| 274 | public function testChildren(): void  | 
            ||
| 275 |     { | 
            ||
| 276 |         $postAdmin = new PostAdmin('sonata.post.admin.post', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 277 | $this->assertFalse($postAdmin->hasChildren());  | 
            ||
| 278 |         $this->assertFalse($postAdmin->hasChild('comment')); | 
            ||
| 279 | |||
| 280 |         $commentAdmin = new CommentAdmin('sonata.post.admin.comment', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentAdminController'); | 
            ||
| 281 | $postAdmin->addChild($commentAdmin, 'post');  | 
            ||
| 282 | |||
| 283 | $this->assertTrue($postAdmin->hasChildren());  | 
            ||
| 284 |         $this->assertTrue($postAdmin->hasChild('sonata.post.admin.comment')); | 
            ||
| 285 | |||
| 286 |         $this->assertSame('sonata.post.admin.comment', $postAdmin->getChild('sonata.post.admin.comment')->getCode()); | 
            ||
| 287 |         $this->assertSame('sonata.post.admin.post|sonata.post.admin.comment', $postAdmin->getChild('sonata.post.admin.comment')->getBaseCodeRoute()); | 
            ||
| 288 |         $this->assertSame($postAdmin, $postAdmin->getChild('sonata.post.admin.comment')->getParent()); | 
            ||
| 289 |         $this->assertSame('post', $commentAdmin->getParentAssociationMapping()); | 
            ||
| 290 | |||
| 291 | $this->assertFalse($postAdmin->isChild());  | 
            ||
| 292 | $this->assertTrue($commentAdmin->isChild());  | 
            ||
| 293 | |||
| 294 | $this->assertSame(['sonata.post.admin.comment' => $commentAdmin], $postAdmin->getChildren());  | 
            ||
| 295 | }  | 
            ||
| 296 | |||
| 297 | /**  | 
            ||
| 298 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::configure  | 
            ||
| 299 | */  | 
            ||
| 300 | public function testConfigure(): void  | 
            ||
| 301 |     { | 
            ||
| 302 |         $admin = new PostAdmin('sonata.post.admin.post', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 303 | $this->assertNotNull($admin->getUniqid());  | 
            ||
| 304 | |||
| 305 | $admin->initialize();  | 
            ||
| 306 | $this->assertNotNull($admin->getUniqid());  | 
            ||
| 307 |         $this->assertSame('Post', $admin->getClassnameLabel()); | 
            ||
| 308 | |||
| 309 |         $admin = new CommentAdmin('sonata.post.admin.comment', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentAdminController'); | 
            ||
| 310 |         $admin->setClassnameLabel('postcomment'); | 
            ||
| 311 | |||
| 312 | $admin->initialize();  | 
            ||
| 313 |         $this->assertSame('postcomment', $admin->getClassnameLabel()); | 
            ||
| 314 | }  | 
            ||
| 315 | |||
| 316 | public function testConfigureWithValidParentAssociationMapping(): void  | 
            ||
| 317 |     { | 
            ||
| 318 |         $admin = new PostAdmin('sonata.post.admin.post', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 319 |         $admin->setParentAssociationMapping('Category'); | 
            ||
| 320 | |||
| 321 | $admin->initialize();  | 
            ||
| 322 |         $this->assertSame('Category', $admin->getParentAssociationMapping()); | 
            ||
| 323 | }  | 
            ||
| 324 | |||
| 325 | public function provideGetBaseRoutePattern()  | 
            ||
| 326 |     { | 
            ||
| 327 | return [  | 
            ||
| 328 | [  | 
            ||
| 329 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 330 | '/sonata/news/post',  | 
            ||
| 331 | ],  | 
            ||
| 332 | [  | 
            ||
| 333 | 'Application\Sonata\NewsBundle\Document\Post',  | 
            ||
| 334 | '/sonata/news/post',  | 
            ||
| 335 | ],  | 
            ||
| 336 | [  | 
            ||
| 337 | 'MyApplication\MyBundle\Entity\Post',  | 
            ||
| 338 | '/myapplication/my/post',  | 
            ||
| 339 | ],  | 
            ||
| 340 | [  | 
            ||
| 341 | 'MyApplication\MyBundle\Entity\Post\Category',  | 
            ||
| 342 | '/myapplication/my/post-category',  | 
            ||
| 343 | ],  | 
            ||
| 344 | [  | 
            ||
| 345 | 'MyApplication\MyBundle\Entity\Product\Category',  | 
            ||
| 346 | '/myapplication/my/product-category',  | 
            ||
| 347 | ],  | 
            ||
| 348 | [  | 
            ||
| 349 | 'MyApplication\MyBundle\Entity\Other\Product\Category',  | 
            ||
| 350 | '/myapplication/my/other-product-category',  | 
            ||
| 351 | ],  | 
            ||
| 352 | [  | 
            ||
| 353 | 'Symfony\Cmf\Bundle\FooBundle\Document\Menu',  | 
            ||
| 354 | '/cmf/foo/menu',  | 
            ||
| 355 | ],  | 
            ||
| 356 | [  | 
            ||
| 357 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\Phpcr\Menu',  | 
            ||
| 358 | '/cmf/foo/menu',  | 
            ||
| 359 | ],  | 
            ||
| 360 | [  | 
            ||
| 361 | 'Symfony\Bundle\BarBarBundle\Doctrine\Phpcr\Menu',  | 
            ||
| 362 | '/symfony/barbar/menu',  | 
            ||
| 363 | ],  | 
            ||
| 364 | [  | 
            ||
| 365 | 'Symfony\Bundle\BarBarBundle\Doctrine\Phpcr\Menu\Item',  | 
            ||
| 366 | '/symfony/barbar/menu-item',  | 
            ||
| 367 | ],  | 
            ||
| 368 | [  | 
            ||
| 369 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\Orm\Menu',  | 
            ||
| 370 | '/cmf/foo/menu',  | 
            ||
| 371 | ],  | 
            ||
| 372 | [  | 
            ||
| 373 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\MongoDB\Menu',  | 
            ||
| 374 | '/cmf/foo/menu',  | 
            ||
| 375 | ],  | 
            ||
| 376 | [  | 
            ||
| 377 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\CouchDB\Menu',  | 
            ||
| 378 | '/cmf/foo/menu',  | 
            ||
| 379 | ],  | 
            ||
| 380 | [  | 
            ||
| 381 | 'AppBundle\Entity\User',  | 
            ||
| 382 | '/app/user',  | 
            ||
| 383 | ],  | 
            ||
| 384 | [  | 
            ||
| 385 | 'App\Entity\User',  | 
            ||
| 386 | '/app/user',  | 
            ||
| 387 | ],  | 
            ||
| 388 | ];  | 
            ||
| 389 | }  | 
            ||
| 390 | |||
| 391 | /**  | 
            ||
| 392 | * @dataProvider provideGetBaseRoutePattern  | 
            ||
| 393 | */  | 
            ||
| 394 | public function testGetBaseRoutePattern(string $objFqn, string $expected): void  | 
            ||
| 395 |     { | 
            ||
| 396 |         $admin = new PostAdmin('sonata.post.admin.post', $objFqn, 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 397 | $this->assertSame($expected, $admin->getBaseRoutePattern());  | 
            ||
| 398 | }  | 
            ||
| 399 | |||
| 400 | /**  | 
            ||
| 401 | * @dataProvider provideGetBaseRoutePattern  | 
            ||
| 402 | */  | 
            ||
| 403 | public function testGetBaseRoutePatternWithChildAdmin(string $objFqn, string $expected): void  | 
            ||
| 404 |     { | 
            ||
| 405 |         $postAdmin = new PostAdmin('sonata.post.admin.post', $objFqn, 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 406 |         $commentAdmin = new CommentAdmin('sonata.post.admin.comment', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentAdminController'); | 
            ||
| 407 | $commentAdmin->setParent($postAdmin);  | 
            ||
| 408 | |||
| 409 |         $this->assertSame(sprintf('%s/{id}/comment', $expected), $commentAdmin->getBaseRoutePattern()); | 
            ||
| 410 | }  | 
            ||
| 411 | |||
| 412 | /**  | 
            ||
| 413 | * @dataProvider provideGetBaseRoutePattern  | 
            ||
| 414 | */  | 
            ||
| 415 | public function testGetBaseRoutePatternWithTwoNestedChildAdmin(string $objFqn, string $expected): void  | 
            ||
| 416 |     { | 
            ||
| 417 |         $postAdmin = new PostAdmin('sonata.post.admin.post', $objFqn, 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 418 | $commentAdmin = new CommentAdmin(  | 
            ||
| 419 | 'sonata.post.admin.comment',  | 
            ||
| 420 | 'Application\Sonata\NewsBundle\Entity\Comment',  | 
            ||
| 421 | 'Sonata\NewsBundle\Controller\CommentAdminController'  | 
            ||
| 422 | );  | 
            ||
| 423 | $commentVoteAdmin = new CommentVoteAdmin(  | 
            ||
| 424 | 'sonata.post.admin.comment_vote',  | 
            ||
| 425 | 'Application\Sonata\NewsBundle\Entity\CommentVote',  | 
            ||
| 426 | 'Sonata\NewsBundle\Controller\CommentVoteAdminController'  | 
            ||
| 427 | );  | 
            ||
| 428 | $commentAdmin->setParent($postAdmin);  | 
            ||
| 429 | $commentVoteAdmin->setParent($commentAdmin);  | 
            ||
| 430 | |||
| 431 |         $this->assertSame(sprintf('%s/{id}/comment/{childId}/commentvote', $expected), $commentVoteAdmin->getBaseRoutePattern()); | 
            ||
| 432 | }  | 
            ||
| 433 | |||
| 434 | public function testGetBaseRoutePatternWithSpecifedPattern(): void  | 
            ||
| 435 |     { | 
            ||
| 436 |         $postAdmin = new PostWithCustomRouteAdmin('sonata.post.admin.post_with_custom_route', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostWithCustomRouteAdminController'); | 
            ||
| 437 | |||
| 438 |         $this->assertSame('/post-custom', $postAdmin->getBaseRoutePattern()); | 
            ||
| 439 | }  | 
            ||
| 440 | |||
| 441 | public function testGetBaseRoutePatternWithChildAdminAndWithSpecifedPattern(): void  | 
            ||
| 442 |     { | 
            ||
| 443 |         $postAdmin = new PostAdmin('sonata.post.admin.post', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 444 |         $commentAdmin = new CommentWithCustomRouteAdmin('sonata.post.admin.comment_with_custom_route', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentWithCustomRouteAdminController'); | 
            ||
| 445 | $commentAdmin->setParent($postAdmin);  | 
            ||
| 446 | |||
| 447 |         $this->assertSame('/sonata/news/post/{id}/comment-custom', $commentAdmin->getBaseRoutePattern()); | 
            ||
| 448 | }  | 
            ||
| 449 | |||
| 450 | public function testGetBaseRoutePatternWithUnreconizedClassname(): void  | 
            ||
| 451 |     { | 
            ||
| 452 | $this->expectException(\RuntimeException::class);  | 
            ||
| 453 | |||
| 454 |         $admin = new PostAdmin('sonata.post.admin.post', 'News\Thing\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 455 | $admin->getBaseRoutePattern();  | 
            ||
| 456 | }  | 
            ||
| 457 | |||
| 458 | public function provideGetBaseRouteName()  | 
            ||
| 459 |     { | 
            ||
| 460 | return [  | 
            ||
| 461 | [  | 
            ||
| 462 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 463 | 'admin_sonata_news_post',  | 
            ||
| 464 | ],  | 
            ||
| 465 | [  | 
            ||
| 466 | 'Application\Sonata\NewsBundle\Document\Post',  | 
            ||
| 467 | 'admin_sonata_news_post',  | 
            ||
| 468 | ],  | 
            ||
| 469 | [  | 
            ||
| 470 | 'MyApplication\MyBundle\Entity\Post',  | 
            ||
| 471 | 'admin_myapplication_my_post',  | 
            ||
| 472 | ],  | 
            ||
| 473 | [  | 
            ||
| 474 | 'MyApplication\MyBundle\Entity\Post\Category',  | 
            ||
| 475 | 'admin_myapplication_my_post_category',  | 
            ||
| 476 | ],  | 
            ||
| 477 | [  | 
            ||
| 478 | 'MyApplication\MyBundle\Entity\Product\Category',  | 
            ||
| 479 | 'admin_myapplication_my_product_category',  | 
            ||
| 480 | ],  | 
            ||
| 481 | [  | 
            ||
| 482 | 'MyApplication\MyBundle\Entity\Other\Product\Category',  | 
            ||
| 483 | 'admin_myapplication_my_other_product_category',  | 
            ||
| 484 | ],  | 
            ||
| 485 | [  | 
            ||
| 486 | 'Symfony\Cmf\Bundle\FooBundle\Document\Menu',  | 
            ||
| 487 | 'admin_cmf_foo_menu',  | 
            ||
| 488 | ],  | 
            ||
| 489 | [  | 
            ||
| 490 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\Phpcr\Menu',  | 
            ||
| 491 | 'admin_cmf_foo_menu',  | 
            ||
| 492 | ],  | 
            ||
| 493 | [  | 
            ||
| 494 | 'Symfony\Bundle\BarBarBundle\Doctrine\Phpcr\Menu',  | 
            ||
| 495 | 'admin_symfony_barbar_menu',  | 
            ||
| 496 | ],  | 
            ||
| 497 | [  | 
            ||
| 498 | 'Symfony\Bundle\BarBarBundle\Doctrine\Phpcr\Menu\Item',  | 
            ||
| 499 | 'admin_symfony_barbar_menu_item',  | 
            ||
| 500 | ],  | 
            ||
| 501 | [  | 
            ||
| 502 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\Orm\Menu',  | 
            ||
| 503 | 'admin_cmf_foo_menu',  | 
            ||
| 504 | ],  | 
            ||
| 505 | [  | 
            ||
| 506 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\MongoDB\Menu',  | 
            ||
| 507 | 'admin_cmf_foo_menu',  | 
            ||
| 508 | ],  | 
            ||
| 509 | [  | 
            ||
| 510 | 'Symfony\Cmf\Bundle\FooBundle\Doctrine\CouchDB\Menu',  | 
            ||
| 511 | 'admin_cmf_foo_menu',  | 
            ||
| 512 | ],  | 
            ||
| 513 | [  | 
            ||
| 514 | 'AppBundle\Entity\User',  | 
            ||
| 515 | 'admin_app_user',  | 
            ||
| 516 | ],  | 
            ||
| 517 | [  | 
            ||
| 518 | 'App\Entity\User',  | 
            ||
| 519 | 'admin_app_user',  | 
            ||
| 520 | ],  | 
            ||
| 521 | ];  | 
            ||
| 522 | }  | 
            ||
| 523 | |||
| 524 | /**  | 
            ||
| 525 | * @dataProvider provideGetBaseRouteName  | 
            ||
| 526 | */  | 
            ||
| 527 | public function testGetBaseRouteName(string $objFqn, string $expected): void  | 
            ||
| 528 |     { | 
            ||
| 529 |         $admin = new PostAdmin('sonata.post.admin.post', $objFqn, 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 530 | |||
| 531 | $this->assertSame($expected, $admin->getBaseRouteName());  | 
            ||
| 532 | }  | 
            ||
| 533 | |||
| 534 | /**  | 
            ||
| 535 | * @group legacy  | 
            ||
| 536 | * @expectedDeprecation Calling "addChild" without second argument is deprecated since sonata-project/admin-bundle 3.35 and will not be allowed in 4.0.  | 
            ||
| 537 | * @dataProvider provideGetBaseRouteName  | 
            ||
| 538 | */  | 
            ||
| 539 | public function testGetBaseRouteNameWithChildAdmin(string $objFqn, string $expected): void  | 
            ||
| 540 |     { | 
            ||
| 541 | $routeGenerator = new DefaultRouteGenerator(  | 
            ||
| 542 | $this->createMock(RouterInterface::class),  | 
            ||
| 543 | new RoutesCache($this->cacheTempFolder, true)  | 
            ||
| 544 | );  | 
            ||
| 545 | |||
| 546 | $container = new Container();  | 
            ||
| 547 | $pool = new Pool($container, 'Sonata Admin', '/path/to/pic.png');  | 
            ||
| 548 | |||
| 549 | $pathInfo = new PathInfoBuilder($this->createMock(AuditManagerInterface::class));  | 
            ||
| 550 |         $postAdmin = new PostAdmin('sonata.post.admin.post', $objFqn, 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 551 |         $container->set('sonata.post.admin.post', $postAdmin); | 
            ||
| 552 | $postAdmin->setConfigurationPool($pool);  | 
            ||
| 553 | $postAdmin->setRouteBuilder($pathInfo);  | 
            ||
| 554 | $postAdmin->setRouteGenerator($routeGenerator);  | 
            ||
| 555 | $postAdmin->initialize();  | 
            ||
| 556 | |||
| 557 | $commentAdmin = new CommentAdmin(  | 
            ||
| 558 | 'sonata.post.admin.comment',  | 
            ||
| 559 | 'Application\Sonata\NewsBundle\Entity\Comment',  | 
            ||
| 560 | 'Sonata\NewsBundle\Controller\CommentAdminController'  | 
            ||
| 561 | );  | 
            ||
| 562 |         $container->set('sonata.post.admin.comment', $commentAdmin); | 
            ||
| 563 | $commentAdmin->setConfigurationPool($pool);  | 
            ||
| 564 | $commentAdmin->setRouteBuilder($pathInfo);  | 
            ||
| 565 | $commentAdmin->setRouteGenerator($routeGenerator);  | 
            ||
| 566 | $commentAdmin->initialize();  | 
            ||
| 567 | |||
| 568 | $postAdmin->addChild($commentAdmin, 'post');  | 
            ||
| 569 | |||
| 570 | $commentVoteAdmin = new CommentVoteAdmin(  | 
            ||
| 571 | 'sonata.post.admin.comment_vote',  | 
            ||
| 572 | 'Application\Sonata\NewsBundle\Entity\CommentVote',  | 
            ||
| 573 | 'Sonata\NewsBundle\Controller\CommentVoteAdminController'  | 
            ||
| 574 | );  | 
            ||
| 575 | |||
| 576 |         $container->set('sonata.post.admin.comment_vote', $commentVoteAdmin); | 
            ||
| 577 | $commentVoteAdmin->setConfigurationPool($pool);  | 
            ||
| 578 | $commentVoteAdmin->setRouteBuilder($pathInfo);  | 
            ||
| 579 | $commentVoteAdmin->setRouteGenerator($routeGenerator);  | 
            ||
| 580 | $commentVoteAdmin->initialize();  | 
            ||
| 581 | |||
| 582 | $commentAdmin->addChild($commentVoteAdmin);  | 
            ||
| 583 | $pool->setAdminServiceIds([  | 
            ||
| 584 | 'sonata.post.admin.post',  | 
            ||
| 585 | 'sonata.post.admin.comment',  | 
            ||
| 586 | 'sonata.post.admin.comment_vote',  | 
            ||
| 587 | ]);  | 
            ||
| 588 | |||
| 589 |         $this->assertSame(sprintf('%s_comment', $expected), $commentAdmin->getBaseRouteName()); | 
            ||
| 590 | |||
| 591 |         $this->assertTrue($postAdmin->hasRoute('show')); | 
            ||
| 592 |         $this->assertTrue($postAdmin->hasRoute('sonata.post.admin.post.show')); | 
            ||
| 593 |         $this->assertTrue($postAdmin->hasRoute('sonata.post.admin.post|sonata.post.admin.comment.show')); | 
            ||
| 594 |         $this->assertTrue($postAdmin->hasRoute('sonata.post.admin.post|sonata.post.admin.comment|sonata.post.admin.comment_vote.show')); | 
            ||
| 595 |         $this->assertTrue($postAdmin->hasRoute('sonata.post.admin.comment.list')); | 
            ||
| 596 |         $this->assertTrue($postAdmin->hasRoute('sonata.post.admin.comment|sonata.post.admin.comment_vote.list')); | 
            ||
| 597 |         $this->assertFalse($postAdmin->hasRoute('sonata.post.admin.post|sonata.post.admin.comment.edit')); | 
            ||
| 598 |         $this->assertFalse($commentAdmin->hasRoute('edit')); | 
            ||
| 599 |         $this->assertSame('post', $commentAdmin->getParentAssociationMapping()); | 
            ||
| 600 | |||
| 601 | /*  | 
            ||
| 602 | * Test the route name from request  | 
            ||
| 603 | */  | 
            ||
| 604 | $postListRequest = new Request(  | 
            ||
| 605 | [],  | 
            ||
| 606 | [],  | 
            ||
| 607 | [  | 
            ||
| 608 |                 '_route' => sprintf('%s_list', $postAdmin->getBaseRouteName()), | 
            ||
| 609 | ]  | 
            ||
| 610 | );  | 
            ||
| 611 | |||
| 612 | $postAdmin->setRequest($postListRequest);  | 
            ||
| 613 | $commentAdmin->setRequest($postListRequest);  | 
            ||
| 614 | |||
| 615 |         $this->assertTrue($postAdmin->isCurrentRoute('list')); | 
            ||
| 616 |         $this->assertFalse($postAdmin->isCurrentRoute('create')); | 
            ||
| 617 |         $this->assertFalse($commentAdmin->isCurrentRoute('list')); | 
            ||
| 618 |         $this->assertFalse($commentVoteAdmin->isCurrentRoute('list')); | 
            ||
| 619 |         $this->assertTrue($commentAdmin->isCurrentRoute('list', 'sonata.post.admin.post')); | 
            ||
| 620 |         $this->assertFalse($commentAdmin->isCurrentRoute('edit', 'sonata.post.admin.post')); | 
            ||
| 621 |         $this->assertTrue($commentVoteAdmin->isCurrentRoute('list', 'sonata.post.admin.post')); | 
            ||
| 622 |         $this->assertFalse($commentVoteAdmin->isCurrentRoute('edit', 'sonata.post.admin.post')); | 
            ||
| 623 | }  | 
            ||
| 624 | |||
| 625 | public function testGetBaseRouteNameWithUnreconizedClassname(): void  | 
            ||
| 626 |     { | 
            ||
| 627 | $this->expectException(\RuntimeException::class);  | 
            ||
| 628 | |||
| 629 |         $admin = new PostAdmin('sonata.post.admin.post', 'News\Thing\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 630 | $admin->getBaseRouteName();  | 
            ||
| 631 | }  | 
            ||
| 632 | |||
| 633 | public function testGetBaseRouteNameWithSpecifiedName(): void  | 
            ||
| 634 |     { | 
            ||
| 635 |         $postAdmin = new PostWithCustomRouteAdmin('sonata.post.admin.post_with_custom_route', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 636 | |||
| 637 |         $this->assertSame('post_custom', $postAdmin->getBaseRouteName()); | 
            ||
| 638 | }  | 
            ||
| 639 | |||
| 640 | public function testGetBaseRouteNameWithChildAdminAndWithSpecifiedName(): void  | 
            ||
| 641 |     { | 
            ||
| 642 |         $postAdmin = new PostAdmin('sonata.post.admin.post', 'Application\Sonata\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 643 |         $commentAdmin = new CommentWithCustomRouteAdmin('sonata.post.admin.comment_with_custom_route', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentWithCustomRouteAdminController'); | 
            ||
| 644 | $commentAdmin->setParent($postAdmin);  | 
            ||
| 645 | |||
| 646 |         $this->assertSame('admin_sonata_news_post_comment_custom', $commentAdmin->getBaseRouteName()); | 
            ||
| 647 | }  | 
            ||
| 648 | |||
| 649 | public function testGetBaseRouteNameWithTwoNestedChildAdminAndWithSpecifiedName(): void  | 
            ||
| 650 |     { | 
            ||
| 651 | $postAdmin = new PostAdmin(  | 
            ||
| 652 | 'sonata.post.admin.post',  | 
            ||
| 653 | 'Application\Sonata\NewsBundle\Entity\Post',  | 
            ||
| 654 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 655 | );  | 
            ||
| 656 | $commentAdmin = new CommentWithCustomRouteAdmin(  | 
            ||
| 657 | 'sonata.post.admin.comment_with_custom_route',  | 
            ||
| 658 | 'Application\Sonata\NewsBundle\Entity\Comment',  | 
            ||
| 659 | 'Sonata\NewsBundle\Controller\CommentWithCustomRouteAdminController'  | 
            ||
| 660 | );  | 
            ||
| 661 | $commentVoteAdmin = new CommentVoteAdmin(  | 
            ||
| 662 | 'sonata.post.admin.comment_vote',  | 
            ||
| 663 | 'Application\Sonata\NewsBundle\Entity\CommentVote',  | 
            ||
| 664 | 'Sonata\NewsBundle\Controller\CommentVoteAdminController'  | 
            ||
| 665 | );  | 
            ||
| 666 | $commentAdmin->setParent($postAdmin);  | 
            ||
| 667 | $commentVoteAdmin->setParent($commentAdmin);  | 
            ||
| 668 | |||
| 669 |         $this->assertSame('admin_sonata_news_post_comment_custom_commentvote', $commentVoteAdmin->getBaseRouteName()); | 
            ||
| 670 | }  | 
            ||
| 671 | |||
| 672 | /**  | 
            ||
| 673 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::setUniqid  | 
            ||
| 674 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getUniqid  | 
            ||
| 675 | */  | 
            ||
| 676 | public function testSetUniqid(): void  | 
            ||
| 677 |     { | 
            ||
| 678 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 679 | |||
| 680 | $uniqid = uniqid();  | 
            ||
| 681 | $admin->setUniqid($uniqid);  | 
            ||
| 682 | |||
| 683 | $this->assertSame($uniqid, $admin->getUniqid());  | 
            ||
| 684 | }  | 
            ||
| 685 | |||
| 686 | public function testToString(): void  | 
            ||
| 687 |     { | 
            ||
| 688 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 689 | |||
| 690 | $s = new \stdClass();  | 
            ||
| 691 | |||
| 692 | $this->assertNotEmpty($admin->toString($s));  | 
            ||
| 693 | |||
| 694 | $s = new FooToString();  | 
            ||
| 695 |         $this->assertSame('salut', $admin->toString($s)); | 
            ||
| 696 | |||
| 697 | // To string method is implemented, but returns null  | 
            ||
| 698 | $s = new FooToStringNull();  | 
            ||
| 699 | $this->assertNotEmpty($admin->toString($s));  | 
            ||
| 700 | |||
| 701 |         $this->assertSame('', $admin->toString(false)); | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 702 | }  | 
            ||
| 703 | |||
| 704 | public function testIsAclEnabled(): void  | 
            ||
| 705 |     { | 
            ||
| 706 |         $postAdmin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 707 | |||
| 708 | $this->assertFalse($postAdmin->isAclEnabled());  | 
            ||
| 709 | |||
| 710 |         $commentAdmin = new CommentAdmin('sonata.post.admin.comment', 'Application\Sonata\NewsBundle\Entity\Comment', 'Sonata\NewsBundle\Controller\CommentAdminController'); | 
            ||
| 711 | $commentAdmin->setSecurityHandler($this->createMock(AclSecurityHandlerInterface::class));  | 
            ||
| 712 | $this->assertTrue($commentAdmin->isAclEnabled());  | 
            ||
| 713 | }  | 
            ||
| 714 | |||
| 715 | /**  | 
            ||
| 716 | * @group legacy  | 
            ||
| 717 | *  | 
            ||
| 718 | * @expectedDeprecation Calling Sonata\AdminBundle\Admin\AbstractAdmin::getActiveSubclassCode() when there is no active subclass is deprecated since sonata-project/admin-bundle 3.52 and will throw an exception in 4.0. Use Sonata\AdminBundle\Admin\AbstractAdmin::hasActiveSubClass() to know if there is an active subclass.  | 
            ||
| 719 | *  | 
            ||
| 720 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getSubClasses  | 
            ||
| 721 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getSubClass  | 
            ||
| 722 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::setSubClasses  | 
            ||
| 723 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::hasSubClass  | 
            ||
| 724 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::hasActiveSubClass  | 
            ||
| 725 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getActiveSubClass  | 
            ||
| 726 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getActiveSubclassCode  | 
            ||
| 727 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getClass  | 
            ||
| 728 | */  | 
            ||
| 729 | public function testSubClass(): void  | 
            ||
| 730 |     { | 
            ||
| 731 | // NEXT_MAJOR: Remove the "@group" and "@expectedDeprecation" annotations  | 
            ||
| 732 | $admin = new PostAdmin(  | 
            ||
| 733 | 'sonata.post.admin.post',  | 
            ||
| 734 | Post::class,  | 
            ||
| 735 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 736 | );  | 
            ||
| 737 |         $this->assertFalse($admin->hasSubClass('test')); | 
            ||
| 738 | $this->assertFalse($admin->hasActiveSubClass());  | 
            ||
| 739 | $this->assertCount(0, $admin->getSubClasses());  | 
            ||
| 740 | $this->assertNull($admin->getActiveSubClass());  | 
            ||
| 741 | $this->assertNull($admin->getActiveSubclassCode());  | 
            ||
| 742 | $this->assertSame(Post::class, $admin->getClass());  | 
            ||
| 743 | |||
| 744 | // Just for the record, if there is no inheritance set, the getSubject is not used  | 
            ||
| 745 | // the getSubject can also lead to some issue  | 
            ||
| 746 | $admin->setSubject(new BlogPost());  | 
            ||
| 747 | $this->assertSame(BlogPost::class, $admin->getClass());  | 
            ||
| 748 | |||
| 749 | $admin->setSubClasses([  | 
            ||
| 750 | 'extended1' => 'NewsBundle\Entity\PostExtended1',  | 
            ||
| 751 | 'extended2' => 'NewsBundle\Entity\PostExtended2',  | 
            ||
| 752 | ]);  | 
            ||
| 753 |         $this->assertFalse($admin->hasSubClass('test')); | 
            ||
| 754 |         $this->assertTrue($admin->hasSubClass('extended1')); | 
            ||
| 755 | $this->assertFalse($admin->hasActiveSubClass());  | 
            ||
| 756 | $this->assertCount(2, $admin->getSubClasses());  | 
            ||
| 757 | // NEXT_MAJOR: remove the following 2 `assertNull()` assertions  | 
            ||
| 758 | $this->assertNull($admin->getActiveSubClass());  | 
            ||
| 759 | $this->assertNull($admin->getActiveSubclassCode());  | 
            ||
| 760 | $this->assertSame(  | 
            ||
| 761 | BlogPost::class,  | 
            ||
| 762 | $admin->getClass(),  | 
            ||
| 763 | 'When there is no subclass in the query the class parameter should be returned'  | 
            ||
| 764 | );  | 
            ||
| 765 | |||
| 766 | $request = new Request(['subclass' => 'extended1']);  | 
            ||
| 767 | $admin->setRequest($request);  | 
            ||
| 768 |         $this->assertFalse($admin->hasSubClass('test')); | 
            ||
| 769 |         $this->assertTrue($admin->hasSubClass('extended1')); | 
            ||
| 770 | $this->assertTrue($admin->hasActiveSubClass());  | 
            ||
| 771 | $this->assertCount(2, $admin->getSubClasses());  | 
            ||
| 772 | $this->assertSame(  | 
            ||
| 773 | 'NewsBundle\Entity\PostExtended1',  | 
            ||
| 774 | $admin->getActiveSubClass(),  | 
            ||
| 775 | 'It should return the curently active sub class.'  | 
            ||
| 776 | );  | 
            ||
| 777 |         $this->assertSame('extended1', $admin->getActiveSubclassCode()); | 
            ||
| 778 | $this->assertSame(  | 
            ||
| 779 | 'NewsBundle\Entity\PostExtended1',  | 
            ||
| 780 | $admin->getClass(),  | 
            ||
| 781 | 'getClass() should return the name of the sub class when passed through a request query parameter.'  | 
            ||
| 782 | );  | 
            ||
| 783 | |||
| 784 |         $request->query->set('subclass', 'inject'); | 
            ||
| 785 | |||
| 786 | $this->assertNull($admin->getActiveSubclassCode());  | 
            ||
| 787 | // NEXT_MAJOR: remove the previous `assertNull()` assertion and uncomment the following lines  | 
            ||
| 788 | // $this->expectException(\LogicException::class);  | 
            ||
| 789 |         // $this->expectExceptionMessage(sprintf('Admin "%s" has no active subclass.', PostAdmin::class)); | 
            ||
| 790 | }  | 
            ||
| 791 | |||
| 792 | /**  | 
            ||
| 793 | * @group legacy  | 
            ||
| 794 | *  | 
            ||
| 795 | * @expectedDeprecation Calling Sonata\AdminBundle\Admin\AbstractAdmin::getActiveSubclassCode() when there is no active subclass is deprecated since sonata-project/admin-bundle 3.52 and will throw an exception in 4.0. Use Sonata\AdminBundle\Admin\AbstractAdmin::hasActiveSubClass() to know if there is an active subclass.  | 
            ||
| 796 | */  | 
            ||
| 797 | public function testNonExistantSubclass(): void  | 
            ||
| 798 |     { | 
            ||
| 799 | // NEXT_MAJOR: Remove the "@group" and "@expectedDeprecation" annotations  | 
            ||
| 800 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 801 | $admin->setModelManager($this->getMockForAbstractClass(ModelManagerInterface::class));  | 
            ||
| 802 | |||
| 803 | $admin->setRequest(new Request(['subclass' => 'inject']));  | 
            ||
| 804 | |||
| 805 | $admin->setSubClasses(['extended1' => 'NewsBundle\Entity\PostExtended1', 'extended2' => 'NewsBundle\Entity\PostExtended2']);  | 
            ||
| 806 | |||
| 807 | $this->assertTrue($admin->hasActiveSubClass());  | 
            ||
| 808 | |||
| 809 | $this->expectException(\RuntimeException::class);  | 
            ||
| 810 | |||
| 811 | $admin->getActiveSubClass();  | 
            ||
| 812 | }  | 
            ||
| 813 | |||
| 814 | /**  | 
            ||
| 815 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::hasActiveSubClass  | 
            ||
| 816 | */  | 
            ||
| 817 | public function testOnlyOneSubclassNeededToBeActive(): void  | 
            ||
| 818 |     { | 
            ||
| 819 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 820 | $admin->setSubClasses(['extended1' => 'NewsBundle\Entity\PostExtended1']);  | 
            ||
| 821 | $request = new Request(['subclass' => 'extended1']);  | 
            ||
| 822 | $admin->setRequest($request);  | 
            ||
| 823 | $this->assertTrue($admin->hasActiveSubClass());  | 
            ||
| 824 | }  | 
            ||
| 825 | |||
| 826 | /**  | 
            ||
| 827 | * @group legacy  | 
            ||
| 828 | * @expectedDeprecation Method "Sonata\AdminBundle\Admin\AbstractAdmin::addSubClass" is deprecated since sonata-project/admin-bundle 3.30 and will be removed in 4.0.  | 
            ||
| 829 | */  | 
            ||
| 830 | public function testAddSubClassIsDeprecated(): void  | 
            ||
| 831 |     { | 
            ||
| 832 | $admin = new PostAdmin(  | 
            ||
| 833 | 'sonata.post.admin.post',  | 
            ||
| 834 | Post::class,  | 
            ||
| 835 | 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 836 | );  | 
            ||
| 837 |         $admin->addSubClass('whatever'); | 
            ||
| 838 | }  | 
            ||
| 839 | |||
| 840 | /**  | 
            ||
| 841 | * @group legacy  | 
            ||
| 842 | */  | 
            ||
| 843 | public function testGetPerPageOptions(): void  | 
            ||
| 844 |     { | 
            ||
| 845 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 846 | |||
| 847 | $perPageOptions = $admin->getPerPageOptions();  | 
            ||
| 848 | |||
| 849 |         foreach ($perPageOptions as $perPage) { | 
            ||
| 850 | $this->assertSame(0, $perPage % 4);  | 
            ||
| 851 | }  | 
            ||
| 852 | |||
| 853 | $admin->setPerPageOptions([500, 1000]);  | 
            ||
| 854 | $this->assertSame([500, 1000], $admin->getPerPageOptions());  | 
            ||
| 855 | }  | 
            ||
| 856 | |||
| 857 | public function testGetLabelTranslatorStrategy(): void  | 
            ||
| 858 |     { | 
            ||
| 859 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 860 | |||
| 861 | $this->assertNull($admin->getLabelTranslatorStrategy());  | 
            ||
| 862 | |||
| 863 | $labelTranslatorStrategy = $this->createMock(LabelTranslatorStrategyInterface::class);  | 
            ||
| 864 | $admin->setLabelTranslatorStrategy($labelTranslatorStrategy);  | 
            ||
| 865 | $this->assertSame($labelTranslatorStrategy, $admin->getLabelTranslatorStrategy());  | 
            ||
| 866 | }  | 
            ||
| 867 | |||
| 868 | public function testGetRouteBuilder(): void  | 
            ||
| 869 |     { | 
            ||
| 870 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 871 | |||
| 872 | $this->assertNull($admin->getRouteBuilder());  | 
            ||
| 873 | |||
| 874 | $routeBuilder = $this->createMock(RouteBuilderInterface::class);  | 
            ||
| 875 | $admin->setRouteBuilder($routeBuilder);  | 
            ||
| 876 | $this->assertSame($routeBuilder, $admin->getRouteBuilder());  | 
            ||
| 877 | }  | 
            ||
| 878 | |||
| 879 | public function testGetMenuFactory(): void  | 
            ||
| 880 |     { | 
            ||
| 881 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 882 | |||
| 883 | $this->assertNull($admin->getMenuFactory());  | 
            ||
| 884 | |||
| 885 | $menuFactory = $this->createMock(FactoryInterface::class);  | 
            ||
| 886 | $admin->setMenuFactory($menuFactory);  | 
            ||
| 887 | $this->assertSame($menuFactory, $admin->getMenuFactory());  | 
            ||
| 888 | }  | 
            ||
| 889 | |||
| 890 | public function testGetExtensions(): void  | 
            ||
| 891 |     { | 
            ||
| 892 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 893 | |||
| 894 | $this->assertSame([], $admin->getExtensions());  | 
            ||
| 895 | |||
| 896 | $adminExtension1 = $this->createMock(AdminExtensionInterface::class);  | 
            ||
| 897 | $adminExtension2 = $this->createMock(AdminExtensionInterface::class);  | 
            ||
| 898 | |||
| 899 | $admin->addExtension($adminExtension1);  | 
            ||
| 900 | $admin->addExtension($adminExtension2);  | 
            ||
| 901 | $this->assertSame([$adminExtension1, $adminExtension2], $admin->getExtensions());  | 
            ||
| 902 | }  | 
            ||
| 903 | |||
| 904 | public function testGetFilterTheme(): void  | 
            ||
| 905 |     { | 
            ||
| 906 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 907 | |||
| 908 | $this->assertSame([], $admin->getFilterTheme());  | 
            ||
| 909 | |||
| 910 | $admin->setFilterTheme(['FooTheme']);  | 
            ||
| 911 | $this->assertSame(['FooTheme'], $admin->getFilterTheme());  | 
            ||
| 912 | }  | 
            ||
| 913 | |||
| 914 | public function testGetFormTheme(): void  | 
            ||
| 915 |     { | 
            ||
| 916 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 917 | |||
| 918 | $this->assertSame([], $admin->getFormTheme());  | 
            ||
| 919 | |||
| 920 | $admin->setFormTheme(['FooTheme']);  | 
            ||
| 921 | |||
| 922 | $this->assertSame(['FooTheme'], $admin->getFormTheme());  | 
            ||
| 923 | }  | 
            ||
| 924 | |||
| 925 | public function testGetValidator(): void  | 
            ||
| 926 |     { | 
            ||
| 927 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 928 | |||
| 929 | $this->assertNull($admin->getValidator());  | 
            ||
| 930 | |||
| 931 | $validator = $this->getMockForAbstractClass(ValidatorInterface::class);  | 
            ||
| 932 | |||
| 933 | $admin->setValidator($validator);  | 
            ||
| 934 | $this->assertSame($validator, $admin->getValidator());  | 
            ||
| 935 | }  | 
            ||
| 936 | |||
| 937 | public function testGetSecurityHandler(): void  | 
            ||
| 938 |     { | 
            ||
| 939 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 940 | |||
| 941 | $this->assertNull($admin->getSecurityHandler());  | 
            ||
| 942 | |||
| 943 | $securityHandler = $this->createMock(SecurityHandlerInterface::class);  | 
            ||
| 944 | $admin->setSecurityHandler($securityHandler);  | 
            ||
| 945 | $this->assertSame($securityHandler, $admin->getSecurityHandler());  | 
            ||
| 946 | }  | 
            ||
| 947 | |||
| 948 | public function testGetSecurityInformation(): void  | 
            ||
| 949 |     { | 
            ||
| 950 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 951 | |||
| 952 | $this->assertSame([], $admin->getSecurityInformation());  | 
            ||
| 953 | |||
| 954 | $securityInformation = [  | 
            ||
| 955 | 'GUEST' => ['VIEW', 'LIST'],  | 
            ||
| 956 | 'STAFF' => ['EDIT', 'LIST', 'CREATE'],  | 
            ||
| 957 | ];  | 
            ||
| 958 | |||
| 959 | $admin->setSecurityInformation($securityInformation);  | 
            ||
| 960 | $this->assertSame($securityInformation, $admin->getSecurityInformation());  | 
            ||
| 961 | }  | 
            ||
| 962 | |||
| 963 | public function testGetManagerType(): void  | 
            ||
| 964 |     { | 
            ||
| 965 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 966 | |||
| 967 | $this->assertNull($admin->getManagerType());  | 
            ||
| 968 | |||
| 969 |         $admin->setManagerType('foo_orm'); | 
            ||
| 970 |         $this->assertSame('foo_orm', $admin->getManagerType()); | 
            ||
| 971 | }  | 
            ||
| 972 | |||
| 973 | public function testGetModelManager(): void  | 
            ||
| 974 |     { | 
            ||
| 975 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 976 | |||
| 977 | $this->assertNull($admin->getModelManager());  | 
            ||
| 978 | |||
| 979 | $modelManager = $this->createMock(ModelManagerInterface::class);  | 
            ||
| 980 | |||
| 981 | $admin->setModelManager($modelManager);  | 
            ||
| 982 | $this->assertSame($modelManager, $admin->getModelManager());  | 
            ||
| 983 | }  | 
            ||
| 984 | |||
| 985 | /**  | 
            ||
| 986 | * NEXT_MAJOR: remove this method.  | 
            ||
| 987 | *  | 
            ||
| 988 | * @group legacy  | 
            ||
| 989 | */  | 
            ||
| 990 | public function testGetBaseCodeRoute(): void  | 
            ||
| 991 |     { | 
            ||
| 992 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 993 | |||
| 994 |         $this->assertSame('', $admin->getBaseCodeRoute()); | 
            ||
| 995 | |||
| 996 |         $admin->setBaseCodeRoute('foo'); | 
            ||
| 997 |         $this->assertSame('foo', $admin->getBaseCodeRoute()); | 
            ||
| 998 | }  | 
            ||
| 999 | |||
| 1000 | // NEXT_MAJOR: uncomment this method.  | 
            ||
| 1001 | // public function testGetBaseCodeRoute()  | 
            ||
| 1002 |     // { | 
            ||
| 1003 | // $postAdmin = new PostAdmin(  | 
            ||
| 1004 | // 'sonata.post.admin.post',  | 
            ||
| 1005 | // 'NewsBundle\Entity\Post',  | 
            ||
| 1006 | // 'Sonata\NewsBundle\Controller\PostAdminController'  | 
            ||
| 1007 | // );  | 
            ||
| 1008 | // $commentAdmin = new CommentAdmin(  | 
            ||
| 1009 | // 'sonata.post.admin.comment',  | 
            ||
| 1010 | // 'Application\Sonata\NewsBundle\Entity\Comment',  | 
            ||
| 1011 | // 'Sonata\NewsBundle\Controller\CommentAdminController'  | 
            ||
| 1012 | // );  | 
            ||
| 1013 | //  | 
            ||
| 1014 | // $this->assertSame($postAdmin->getCode(), $postAdmin->getBaseCodeRoute());  | 
            ||
| 1015 | //  | 
            ||
| 1016 | // $postAdmin->addChild($commentAdmin);  | 
            ||
| 1017 | //  | 
            ||
| 1018 | // $this->assertSame(  | 
            ||
| 1019 | // 'sonata.post.admin.post|sonata.post.admin.comment',  | 
            ||
| 1020 | // $commentAdmin->getBaseCodeRoute()  | 
            ||
| 1021 | // );  | 
            ||
| 1022 | // }  | 
            ||
| 1023 | |||
| 1024 | public function testGetRouteGenerator(): void  | 
            ||
| 1025 |     { | 
            ||
| 1026 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1027 | |||
| 1028 | $this->assertNull($admin->getRouteGenerator());  | 
            ||
| 1029 | |||
| 1030 | $routeGenerator = $this->createMock(RouteGeneratorInterface::class);  | 
            ||
| 1031 | |||
| 1032 | $admin->setRouteGenerator($routeGenerator);  | 
            ||
| 1033 | $this->assertSame($routeGenerator, $admin->getRouteGenerator());  | 
            ||
| 1034 | }  | 
            ||
| 1035 | |||
| 1036 | public function testGetConfigurationPool(): void  | 
            ||
| 1037 |     { | 
            ||
| 1038 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1039 | |||
| 1040 | $this->assertNull($admin->getConfigurationPool());  | 
            ||
| 1041 | |||
| 1042 | $pool = $this->getMockBuilder(Pool::class)  | 
            ||
| 1043 | ->disableOriginalConstructor()  | 
            ||
| 1044 | ->getMock();  | 
            ||
| 1045 | |||
| 1046 | $admin->setConfigurationPool($pool);  | 
            ||
| 1047 | $this->assertSame($pool, $admin->getConfigurationPool());  | 
            ||
| 1048 | }  | 
            ||
| 1049 | |||
| 1050 | public function testGetShowBuilder(): void  | 
            ||
| 1051 |     { | 
            ||
| 1052 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1053 | |||
| 1054 | $this->assertNull($admin->getShowBuilder());  | 
            ||
| 1055 | |||
| 1056 | $showBuilder = $this->createMock(ShowBuilderInterface::class);  | 
            ||
| 1057 | |||
| 1058 | $admin->setShowBuilder($showBuilder);  | 
            ||
| 1059 | $this->assertSame($showBuilder, $admin->getShowBuilder());  | 
            ||
| 1060 | }  | 
            ||
| 1061 | |||
| 1062 | public function testGetListBuilder(): void  | 
            ||
| 1063 |     { | 
            ||
| 1064 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1065 | |||
| 1066 | $this->assertNull($admin->getListBuilder());  | 
            ||
| 1067 | |||
| 1068 | $listBuilder = $this->createMock(ListBuilderInterface::class);  | 
            ||
| 1069 | |||
| 1070 | $admin->setListBuilder($listBuilder);  | 
            ||
| 1071 | $this->assertSame($listBuilder, $admin->getListBuilder());  | 
            ||
| 1072 | }  | 
            ||
| 1073 | |||
| 1074 | public function testGetDatagridBuilder(): void  | 
            ||
| 1075 |     { | 
            ||
| 1076 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1077 | |||
| 1078 | $this->assertNull($admin->getDatagridBuilder());  | 
            ||
| 1079 | |||
| 1080 | $datagridBuilder = $this->createMock(DatagridBuilderInterface::class);  | 
            ||
| 1081 | |||
| 1082 | $admin->setDatagridBuilder($datagridBuilder);  | 
            ||
| 1083 | $this->assertSame($datagridBuilder, $admin->getDatagridBuilder());  | 
            ||
| 1084 | }  | 
            ||
| 1085 | |||
| 1086 | public function testGetFormContractor(): void  | 
            ||
| 1087 |     { | 
            ||
| 1088 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1089 | |||
| 1090 | $this->assertNull($admin->getFormContractor());  | 
            ||
| 1091 | |||
| 1092 | $formContractor = $this->createMock(FormContractorInterface::class);  | 
            ||
| 1093 | |||
| 1094 | $admin->setFormContractor($formContractor);  | 
            ||
| 1095 | $this->assertSame($formContractor, $admin->getFormContractor());  | 
            ||
| 1096 | }  | 
            ||
| 1097 | |||
| 1098 | public function testGetRequest(): void  | 
            ||
| 1099 |     { | 
            ||
| 1100 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1101 | |||
| 1102 | $this->assertFalse($admin->hasRequest());  | 
            ||
| 1103 | |||
| 1104 | $request = new Request();  | 
            ||
| 1105 | |||
| 1106 | $admin->setRequest($request);  | 
            ||
| 1107 | $this->assertSame($request, $admin->getRequest());  | 
            ||
| 1108 | $this->assertTrue($admin->hasRequest());  | 
            ||
| 1109 | }  | 
            ||
| 1110 | |||
| 1111 | public function testGetRequestWithException(): void  | 
            ||
| 1112 |     { | 
            ||
| 1113 | $this->expectException(\RuntimeException::class);  | 
            ||
| 1114 |         $this->expectExceptionMessage('The Request object has not been set'); | 
            ||
| 1115 | |||
| 1116 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1117 | $admin->getRequest();  | 
            ||
| 1118 | }  | 
            ||
| 1119 | |||
| 1120 | public function testGetTranslationDomain(): void  | 
            ||
| 1121 |     { | 
            ||
| 1122 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1123 | |||
| 1124 |         $this->assertSame('messages', $admin->getTranslationDomain()); | 
            ||
| 1125 | |||
| 1126 |         $admin->setTranslationDomain('foo'); | 
            ||
| 1127 |         $this->assertSame('foo', $admin->getTranslationDomain()); | 
            ||
| 1128 | }  | 
            ||
| 1129 | |||
| 1130 | /**  | 
            ||
| 1131 | * @group legacy  | 
            ||
| 1132 | */  | 
            ||
| 1133 | public function testGetTranslator(): void  | 
            ||
| 1134 |     { | 
            ||
| 1135 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1136 | |||
| 1137 | $this->assertNull($admin->getTranslator());  | 
            ||
| 1138 | |||
| 1139 | $translator = $this->createMock(TranslatorInterface::class);  | 
            ||
| 1140 | |||
| 1141 | $admin->setTranslator($translator);  | 
            ||
| 1142 | $this->assertSame($translator, $admin->getTranslator());  | 
            ||
| 1143 | }  | 
            ||
| 1144 | |||
| 1145 | public function testGetShowGroups(): void  | 
            ||
| 1146 |     { | 
            ||
| 1147 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1148 | |||
| 1149 | // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call.  | 
            ||
| 1150 |         $this->assertFalse($admin->getShowGroups('sonata_deprecation_mute')); | 
            ||
| 1151 | |||
| 1152 | $groups = ['foo', 'bar', 'baz'];  | 
            ||
| 1153 | |||
| 1154 | $admin->setShowGroups($groups);  | 
            ||
| 1155 | $this->assertSame($groups, $admin->getShowGroups());  | 
            ||
| 1156 | }  | 
            ||
| 1157 | |||
| 1158 | public function testGetFormGroups(): void  | 
            ||
| 1159 |     { | 
            ||
| 1160 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1161 | |||
| 1162 | // NEXT_MAJOR: Remove the argument "sonata_deprecation_mute" in the following call.  | 
            ||
| 1163 |         $this->assertFalse($admin->getFormGroups('sonata_deprecation_mute')); | 
            ||
| 1164 | |||
| 1165 | $groups = ['foo', 'bar', 'baz'];  | 
            ||
| 1166 | |||
| 1167 | $admin->setFormGroups($groups);  | 
            ||
| 1168 | $this->assertSame($groups, $admin->getFormGroups());  | 
            ||
| 1169 | }  | 
            ||
| 1170 | |||
| 1171 | public function testGetMaxPageLinks(): void  | 
            ||
| 1180 | |||
| 1181 | /**  | 
            ||
| 1182 | * @group legacy  | 
            ||
| 1183 | */  | 
            ||
| 1184 | public function testGetMaxPerPage(): void  | 
            ||
| 1193 | |||
| 1194 | public function testGetLabel(): void  | 
            ||
| 1203 | |||
| 1204 | public function testGetBaseController(): void  | 
            ||
| 1213 | |||
| 1214 | public function testGetTemplates(): void  | 
            ||
| 1231 | |||
| 1232 | public function testGetTemplate1(): void  | 
            ||
| 1245 | |||
| 1246 | public function testGetIdParameter(): void  | 
            ||
| 1277 | |||
| 1278 | public function testGetExportFormats(): void  | 
            ||
| 1284 | |||
| 1285 | public function testGetUrlsafeIdentifier(): void  | 
            ||
| 1300 | |||
| 1301 | public function testDeterminedPerPageValue(): void  | 
            ||
| 1302 |     { | 
            ||
| 1303 |         $admin = new PostAdmin('sonata.post.admin.post', 'Acme\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1304 | |||
| 1305 |         $this->assertFalse($admin->determinedPerPageValue('foo')); | 
            ||
| 1306 | $this->assertFalse($admin->determinedPerPageValue(123));  | 
            ||
| 1307 | $this->assertTrue($admin->determinedPerPageValue(16));  | 
            ||
| 1308 | }  | 
            ||
| 1309 | |||
| 1310 | public function testIsGranted(): void  | 
            ||
| 1311 |     { | 
            ||
| 1312 |         $admin = new PostAdmin('sonata.post.admin.post', 'Acme\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1313 | $modelManager = $this->createStub(ModelManagerInterface::class);  | 
            ||
| 1314 | $modelManager  | 
            ||
| 1315 |             ->method('getNormalizedIdentifier') | 
            ||
| 1316 |             ->willReturnCallback(static function (?object $model = null): ?string { | 
            ||
| 1317 | return $model ? $model->id : null;  | 
            ||
| 1318 | });  | 
            ||
| 1319 | |||
| 1320 | $admin->setModelManager($modelManager);  | 
            ||
| 1321 | |||
| 1322 | $entity1 = new \stdClass();  | 
            ||
| 1323 | $entity1->id = '1';  | 
            ||
| 1324 | |||
| 1325 | $securityHandler = $this->createMock(AclSecurityHandlerInterface::class);  | 
            ||
| 1326 | $securityHandler  | 
            ||
| 1327 | ->expects($this->exactly(6))  | 
            ||
| 1328 |             ->method('isGranted') | 
            ||
| 1329 | ->willReturnCallback(static function (  | 
            ||
| 1330 | AdminInterface $adminIn,  | 
            ||
| 1331 | string $attributes,  | 
            ||
| 1332 | ?object $object = null  | 
            ||
| 1333 | ) use (  | 
            ||
| 1334 | $admin,  | 
            ||
| 1335 | $entity1  | 
            ||
| 1336 |             ): bool { | 
            ||
| 1337 | return $admin === $adminIn && 'FOO' === $attributes &&  | 
            ||
| 1338 | ($object === $admin || $object === $entity1);  | 
            ||
| 1339 | });  | 
            ||
| 1340 | |||
| 1341 | $admin->setSecurityHandler($securityHandler);  | 
            ||
| 1342 | |||
| 1343 |         $this->assertTrue($admin->isGranted('FOO')); | 
            ||
| 1344 |         $this->assertTrue($admin->isGranted('FOO')); | 
            ||
| 1345 |         $this->assertTrue($admin->isGranted('FOO', $entity1)); | 
            ||
| 1346 |         $this->assertTrue($admin->isGranted('FOO', $entity1)); | 
            ||
| 1347 |         $this->assertFalse($admin->isGranted('BAR')); | 
            ||
| 1348 |         $this->assertFalse($admin->isGranted('BAR')); | 
            ||
| 1349 |         $this->assertFalse($admin->isGranted('BAR', $entity1)); | 
            ||
| 1350 |         $this->assertFalse($admin->isGranted('BAR', $entity1)); | 
            ||
| 1351 | |||
| 1352 | $entity2 = new \stdClass();  | 
            ||
| 1353 | $entity2->id = '2';  | 
            ||
| 1354 | |||
| 1355 |         $this->assertFalse($admin->isGranted('BAR', $entity2)); | 
            ||
| 1356 |         $this->assertFalse($admin->isGranted('BAR', $entity2)); | 
            ||
| 1357 | |||
| 1358 | $entity3 = new \stdClass();  | 
            ||
| 1359 | $entity3->id = '3';  | 
            ||
| 1360 | |||
| 1361 |         $this->assertFalse($admin->isGranted('BAR', $entity3)); | 
            ||
| 1362 |         $this->assertFalse($admin->isGranted('BAR', $entity3)); | 
            ||
| 1363 | }  | 
            ||
| 1364 | |||
| 1365 | public function testSupportsPreviewMode(): void  | 
            ||
| 1371 | |||
| 1372 | public function testGetPermissionsShow(): void  | 
            ||
| 1380 | |||
| 1381 | public function testShowIn(): void  | 
            ||
| 1382 |     { | 
            ||
| 1383 |         $admin = new PostAdmin('sonata.post.admin.post', 'Acme\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1384 | |||
| 1385 | $securityHandler = $this->createMock(AclSecurityHandlerInterface::class);  | 
            ||
| 1386 | $securityHandler  | 
            ||
| 1387 |             ->method('isGranted') | 
            ||
| 1388 |             ->willReturnCallback(static function (AdminInterface $adminIn, array $attributes, $object = null) use ($admin): bool { | 
            ||
| 1389 | return $admin === $adminIn && $attributes === ['LIST'];  | 
            ||
| 1390 | });  | 
            ||
| 1391 | |||
| 1392 | $admin->setSecurityHandler($securityHandler);  | 
            ||
| 1393 | |||
| 1394 | $this->assertTrue($admin->showIn(AbstractAdmin::CONTEXT_DASHBOARD));  | 
            ||
| 1395 | $this->assertTrue($admin->showIn(AbstractAdmin::CONTEXT_MENU));  | 
            ||
| 1396 |         $this->assertTrue($admin->showIn('foo')); | 
            ||
| 1397 | }  | 
            ||
| 1398 | |||
| 1399 | public function testGetObjectIdentifier(): void  | 
            ||
| 1400 |     { | 
            ||
| 1401 |         $admin = new PostAdmin('sonata.post.admin.post', 'Acme\NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1402 | |||
| 1403 |         $this->assertSame('sonata.post.admin.post', $admin->getObjectIdentifier()); | 
            ||
| 1404 | }  | 
            ||
| 1405 | |||
| 1406 | /**  | 
            ||
| 1407 | * @group legacy  | 
            ||
| 1408 | */  | 
            ||
| 1409 | public function testTrans(): void  | 
            ||
| 1410 |     { | 
            ||
| 1411 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1412 |         $admin->setTranslationDomain('fooMessageDomain'); | 
            ||
| 1413 | |||
| 1414 | $translator = $this->createMock(TranslatorInterface::class);  | 
            ||
| 1415 | $admin->setTranslator($translator);  | 
            ||
| 1416 | |||
| 1417 | $translator->expects($this->once())  | 
            ||
| 1418 |             ->method('trans') | 
            ||
| 1419 |             ->with($this->equalTo('foo'), $this->equalTo([]), $this->equalTo('fooMessageDomain')) | 
            ||
| 1420 |             ->willReturn('fooTranslated'); | 
            ||
| 1421 | |||
| 1422 |         $this->assertSame('fooTranslated', $admin->trans('foo')); | 
            ||
| 1423 | }  | 
            ||
| 1424 | |||
| 1425 | /**  | 
            ||
| 1426 | * @group legacy  | 
            ||
| 1427 | */  | 
            ||
| 1428 | public function testTransWithMessageDomain(): void  | 
            ||
| 1429 |     { | 
            ||
| 1430 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1431 | |||
| 1432 | $translator = $this->createMock(TranslatorInterface::class);  | 
            ||
| 1433 | $admin->setTranslator($translator);  | 
            ||
| 1434 | |||
| 1435 | $translator->expects($this->once())  | 
            ||
| 1436 |             ->method('trans') | 
            ||
| 1437 |             ->with($this->equalTo('foo'), $this->equalTo(['name' => 'Andrej']), $this->equalTo('fooMessageDomain')) | 
            ||
| 1438 |             ->willReturn('fooTranslated'); | 
            ||
| 1439 | |||
| 1440 |         $this->assertSame('fooTranslated', $admin->trans('foo', ['name' => 'Andrej'], 'fooMessageDomain')); | 
            ||
| 1441 | }  | 
            ||
| 1442 | |||
| 1443 | /**  | 
            ||
| 1444 | * @group legacy  | 
            ||
| 1445 | */  | 
            ||
| 1446 | public function testTransChoice(): void  | 
            ||
| 1447 |     { | 
            ||
| 1448 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1449 |         $admin->setTranslationDomain('fooMessageDomain'); | 
            ||
| 1450 | |||
| 1451 | $translator = $this->createMock(TranslatorInterface::class);  | 
            ||
| 1452 | $admin->setTranslator($translator);  | 
            ||
| 1453 | |||
| 1454 | $translator->expects($this->once())  | 
            ||
| 1455 |             ->method('transChoice') | 
            ||
| 1456 |             ->with($this->equalTo('foo'), $this->equalTo(2), $this->equalTo([]), $this->equalTo('fooMessageDomain')) | 
            ||
| 1457 |             ->willReturn('fooTranslated'); | 
            ||
| 1458 | |||
| 1459 |         $this->assertSame('fooTranslated', $admin->transChoice('foo', 2)); | 
            ||
| 1460 | }  | 
            ||
| 1461 | |||
| 1462 | /**  | 
            ||
| 1463 | * @group legacy  | 
            ||
| 1464 | */  | 
            ||
| 1465 | public function testTransChoiceWithMessageDomain(): void  | 
            ||
| 1466 |     { | 
            ||
| 1467 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1468 | |||
| 1469 | $translator = $this->createMock(TranslatorInterface::class);  | 
            ||
| 1470 | $admin->setTranslator($translator);  | 
            ||
| 1471 | |||
| 1472 | $translator->expects($this->once())  | 
            ||
| 1473 |             ->method('transChoice') | 
            ||
| 1474 |             ->with($this->equalTo('foo'), $this->equalTo(2), $this->equalTo(['name' => 'Andrej']), $this->equalTo('fooMessageDomain')) | 
            ||
| 1475 |             ->willReturn('fooTranslated'); | 
            ||
| 1476 | |||
| 1477 |         $this->assertSame('fooTranslated', $admin->transChoice('foo', 2, ['name' => 'Andrej'], 'fooMessageDomain')); | 
            ||
| 1478 | }  | 
            ||
| 1479 | |||
| 1480 | public function testSetFilterPersister(): void  | 
            ||
| 1481 |     { | 
            ||
| 1482 |         $admin = new class('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'SonataNewsBundle\Controller\PostAdminController') extends PostAdmin { | 
            ||
| 1483 | public function persistFilters(): bool  | 
            ||
| 1484 |             { | 
            ||
| 1485 | return $this->persistFilters;  | 
            ||
| 1486 | }  | 
            ||
| 1487 | };  | 
            ||
| 1488 | |||
| 1489 | $filterPersister = $this->createMock(FilterPersisterInterface::class);  | 
            ||
| 1490 | |||
| 1491 | $admin->setFilterPersister($filterPersister);  | 
            ||
| 1492 | $this->assertTrue($admin->persistFilters());  | 
            ||
| 1493 | }  | 
            ||
| 1494 | |||
| 1495 | public function testGetRootCode(): void  | 
            ||
| 1512 | |||
| 1513 | public function testGetRoot(): void  | 
            ||
| 1530 | |||
| 1531 | public function testGetExportFields(): void  | 
            ||
| 1532 |     { | 
            ||
| 1533 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1534 | |||
| 1535 | $modelManager = $this->createMock(ModelManagerInterface::class);  | 
            ||
| 1536 | $modelManager->expects($this->once())  | 
            ||
| 1537 |             ->method('getExportFields') | 
            ||
| 1538 |             ->with($this->equalTo('NewsBundle\Entity\Post')) | 
            ||
| 1539 | ->willReturn(['foo', 'bar']);  | 
            ||
| 1540 | |||
| 1541 | $admin->setModelManager($modelManager);  | 
            ||
| 1542 | $this->assertSame(['foo', 'bar'], $admin->getExportFields());  | 
            ||
| 1543 | }  | 
            ||
| 1544 | |||
| 1545 | public function testGetPersistentParametersWithNoExtension(): void  | 
            ||
| 1546 |     { | 
            ||
| 1547 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1548 | |||
| 1549 | $this->assertEmpty($admin->getPersistentParameters());  | 
            ||
| 1550 | }  | 
            ||
| 1551 | |||
| 1552 | public function testGetPersistentParametersWithInvalidExtension(): void  | 
            ||
| 1553 |     { | 
            ||
| 1554 | $this->expectException(\RuntimeException::class);  | 
            ||
| 1555 | |||
| 1556 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1557 | |||
| 1558 | $extension = $this->createMock(AdminExtensionInterface::class);  | 
            ||
| 1559 |         $extension->expects($this->once())->method('getPersistentParameters')->willReturn(null); | 
            ||
| 1560 | |||
| 1561 | $admin->addExtension($extension);  | 
            ||
| 1562 | |||
| 1563 | $admin->getPersistentParameters();  | 
            ||
| 1564 | }  | 
            ||
| 1565 | |||
| 1566 | public function testGetPersistentParametersWithValidExtension(): void  | 
            ||
| 1567 |     { | 
            ||
| 1568 | $expected = [  | 
            ||
| 1569 | 'context' => 'foobar',  | 
            ||
| 1570 | ];  | 
            ||
| 1571 | |||
| 1572 |         $admin = new PostAdmin('sonata.post.admin.post', 'NewsBundle\Entity\Post', 'Sonata\NewsBundle\Controller\PostAdminController'); | 
            ||
| 1573 | |||
| 1574 | $extension = $this->createMock(AdminExtensionInterface::class);  | 
            ||
| 1575 |         $extension->expects($this->once())->method('getPersistentParameters')->willReturn($expected); | 
            ||
| 1576 | |||
| 1577 | $admin->addExtension($extension);  | 
            ||
| 1578 | |||
| 1579 | $this->assertSame($expected, $admin->getPersistentParameters());  | 
            ||
| 1580 | }  | 
            ||
| 1581 | |||
| 1582 | public function testGetNewInstanceForChildAdminWithParentValue(): void  | 
            ||
| 1583 |     { | 
            ||
| 1584 | $post = new Post();  | 
            ||
| 1585 | |||
| 1586 | $postAdmin = $this->getMockBuilder(PostAdmin::class)->disableOriginalConstructor()->getMock();  | 
            ||
| 1587 |         $postAdmin->method('getObject')->willReturn($post); | 
            ||
| 1588 | |||
| 1589 | $formBuilder = $this->createStub(FormBuilderInterface::class);  | 
            ||
| 1590 |         $formBuilder->method('getForm')->willReturn(null); | 
            ||
| 1591 | |||
| 1592 | $tag = new Tag();  | 
            ||
| 1593 | |||
| 1594 | $modelManager = $this->createStub(ModelManagerInterface::class);  | 
            ||
| 1595 |         $modelManager->method('getModelInstance')->willReturn($tag); | 
            ||
| 1596 | |||
| 1597 |         $tagAdmin = new TagAdmin('admin.tag', Tag::class, 'MyBundle\MyController'); | 
            ||
| 1598 | $tagAdmin->setModelManager($modelManager);  | 
            ||
| 1599 | $tagAdmin->setParent($postAdmin);  | 
            ||
| 1600 | |||
| 1601 | $request = $this->createStub(Request::class);  | 
            ||
| 1602 | $tagAdmin->setRequest($request);  | 
            ||
| 1603 | |||
| 1616 | |||
| 1617 | public function testGetNewInstanceForChildAdminWithCollectionParentValue(): void  | 
            ||
| 1653 | |||
| 1654 | public function testGetNewInstanceForEmbededAdminWithParentValue(): void  | 
            ||
| 1693 | |||
| 1694 | public function testFormAddPostSubmitEventForPreValidation(): void  | 
            ||
| 1762 | |||
| 1763 | public function testCanAddInlineValidationOnlyForGenericMetadata(): void  | 
            ||
| 1812 | |||
| 1813 | public function testRemoveFieldFromFormGroup(): void  | 
            ||
| 1839 | |||
| 1840 | public function testGetFilterParameters(): void  | 
            ||
| 1880 | |||
| 1881 | public function testGetFilterFieldDescription(): void  | 
            ||
| 1952 | |||
| 1953 | public function testGetSubjectNoRequest(): void  | 
            ||
| 1965 | |||
| 1966 | public function testGetSideMenu(): void  | 
            ||
| 1990 | |||
| 1991 | /**  | 
            ||
| 1992 | * @return array  | 
            ||
| 1993 | */  | 
            ||
| 1994 | public function provideGetSubject()  | 
            ||
| 2004 | |||
| 2005 | /**  | 
            ||
| 2006 | * @dataProvider provideGetSubject  | 
            ||
| 2007 | */  | 
            ||
| 2008 | public function testGetSubjectFailed($id): void  | 
            ||
| 2023 | |||
| 2024 | /**  | 
            ||
| 2025 | * @dataProvider provideGetSubject  | 
            ||
| 2026 | */  | 
            ||
| 2027 | public function testGetSubject($id): void  | 
            ||
| 2046 | |||
| 2047 | public function testGetSubjectWithParentDescription(): void  | 
            ||
| 2076 | |||
| 2077 | /**  | 
            ||
| 2078 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::configureActionButtons  | 
            ||
| 2079 | */  | 
            ||
| 2080 | public function testGetActionButtonsList(): void  | 
            ||
| 2113 | |||
| 2114 | /**  | 
            ||
| 2115 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::configureActionButtons  | 
            ||
| 2116 | */  | 
            ||
| 2117 | public function testGetActionButtonsListCreateDisabled(): void  | 
            ||
| 2131 | |||
| 2132 | public function testCantAccessObjectIfNullPassed(): void  | 
            ||
| 2138 | |||
| 2139 | public function testCantAccessObjectIfRandomObjectPassed(): void  | 
            ||
| 2147 | |||
| 2148 | public function testCanAccessObject(): void  | 
            ||
| 2161 | |||
| 2162 | /**  | 
            ||
| 2163 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::configureBatchActions  | 
            ||
| 2164 | */  | 
            ||
| 2165 | public function testGetBatchActions(): void  | 
            ||
| 2219 | |||
| 2220 | /**  | 
            ||
| 2221 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::showMosaicButton  | 
            ||
| 2222 | */  | 
            ||
| 2223 | public function testShowMosaicButton(): void  | 
            ||
| 2232 | |||
| 2233 | /**  | 
            ||
| 2234 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::showMosaicButton  | 
            ||
| 2235 | */  | 
            ||
| 2236 | public function testShowMosaicButtonHideMosaic(): void  | 
            ||
| 2246 | |||
| 2247 | /**  | 
            ||
| 2248 | * @covers \Sonata\AdminBundle\Admin\AbstractAdmin::getDashboardActions  | 
            ||
| 2249 | * @dataProvider provideGetBaseRouteName  | 
            ||
| 2250 | */  | 
            ||
| 2251 | public function testDefaultDashboardActionsArePresent(string $objFqn, string $expected): void  | 
            ||
| 2282 | |||
| 2283 | /**  | 
            ||
| 2284 | * NEXT_MAJOR: Remove the assertion about isDefaultFilter method and the legacy group.  | 
            ||
| 2285 | *  | 
            ||
| 2286 | * @group legacy  | 
            ||
| 2287 | *  | 
            ||
| 2288 | * @expectedDeprecation Method "Sonata\AdminBundle\Admin\AbstractAdmin::isDefaultFilter" is deprecated since sonata-project/admin-bundle 3.x.  | 
            ||
| 2289 | */  | 
            ||
| 2290 | public function testDefaultFilters(): void  | 
            ||
| 2349 | |||
| 2350 | /**  | 
            ||
| 2351 | * @group legacy  | 
            ||
| 2352 | */  | 
            ||
| 2353 | public function testDefaultBreadcrumbsBuilder(): void  | 
            ||
| 2377 | |||
| 2378 | /**  | 
            ||
| 2379 | * @group legacy  | 
            ||
| 2380 | */  | 
            ||
| 2381 | public function testBreadcrumbsBuilderSetter(): void  | 
            ||
| 2391 | |||
| 2392 | /**  | 
            ||
| 2393 | * @group legacy  | 
            ||
| 2394 | */  | 
            ||
| 2395 | public function testGetBreadcrumbs(): void  | 
            ||
| 2405 | |||
| 2406 | /**  | 
            ||
| 2407 | * @group legacy  | 
            ||
| 2408 | */  | 
            ||
| 2409 | public function testBuildBreadcrumbs(): void  | 
            ||
| 2426 | |||
| 2427 | /**  | 
            ||
| 2428 | * NEXT_MAJOR: remove this method.  | 
            ||
| 2429 | *  | 
            ||
| 2430 | * @group legacy  | 
            ||
| 2431 | */  | 
            ||
| 2432 | public function testCreateQueryLegacyCallWorks(): void  | 
            ||
| 2447 | |||
| 2448 | public function testGetDataSourceIterator(): void  | 
            ||
| 2490 | |||
| 2491 | public function testCircularChildAdmin(): void  | 
            ||
| 2511 | |||
| 2512 | public function testCircularChildAdminTripleLevel(): void  | 
            ||
| 2538 | |||
| 2539 | public function testCircularChildAdminWithItself(): void  | 
            ||
| 2553 | |||
| 2554 | public function testGetRootAncestor(): void  | 
            ||
| 2588 | |||
| 2589 | public function testGetChildDepth(): void  | 
            ||
| 2623 | |||
| 2624 | public function testGetCurrentLeafChildAdmin(): void  | 
            ||
| 2661 | |||
| 2662 | public function testAdminWithoutControllerName(): void  | 
            ||
| 2668 | |||
| 2669 | public function testAdminAvoidInifiniteLoop(): void  | 
            ||
| 2699 | |||
| 2700 | /**  | 
            ||
| 2701 | * NEXT_MAJOR: Remove this test and its data provider.  | 
            ||
| 2702 | *  | 
            ||
| 2703 | * @group legacy  | 
            ||
| 2704 | *  | 
            ||
| 2705 | * @dataProvider getDeprecatedAbstractAdminConstructorArgs  | 
            ||
| 2706 | *  | 
            ||
| 2707 | * @expectedDeprecation Passing other type than string%S as argument %d for method Sonata\AdminBundle\Admin\AbstractAdmin::__construct() is deprecated since sonata-project/admin-bundle 3.65. It will accept only string%S in version 4.0.  | 
            ||
| 2708 | */  | 
            ||
| 2709 | public function testDeprecatedAbstractAdminConstructorArgs($code, $class, $baseControllerName): void  | 
            ||
| 2713 | |||
| 2714 | public function getDeprecatedAbstractAdminConstructorArgs(): iterable  | 
            ||
| 2728 | }  | 
            ||
| 2729 | 
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: