UpdateLocalTasksTest.php

Same filename in other branches
  1. 9 core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php
  2. 10 core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php
  3. 11.x core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php

Namespace

Drupal\Tests\update\Unit\Menu

File

core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php

View source
<?php

namespace Drupal\Tests\update\Unit\Menu;

use Drupal\Tests\Core\Menu\LocalTaskIntegrationTestBase;

/**
 * Tests existence of update local tasks.
 *
 * @group update
 */
class UpdateLocalTasksTest extends LocalTaskIntegrationTestBase {
    protected function setUp() {
        $this->directoryList = [
            'update' => 'core/modules/update',
        ];
        parent::setUp();
    }
    
    /**
     * Checks update report tasks.
     *
     * @dataProvider getUpdateReportRoutes
     */
    public function testUpdateReportLocalTasks($route) {
        $this->assertLocalTasks($route, [
            0 => [
                'update.status',
                'update.settings',
                'update.report_update',
            ],
        ]);
    }
    
    /**
     * Provides a list of report routes to test.
     */
    public function getUpdateReportRoutes() {
        return [
            [
                'update.status',
            ],
            [
                'update.settings',
            ],
            [
                'update.report_update',
            ],
        ];
    }
    
    /**
     * Checks update module tasks.
     *
     * @dataProvider getUpdateModuleRoutes
     */
    public function testUpdateModuleLocalTasks($route) {
        $this->assertLocalTasks($route, [
            0 => [
                'update.module_update',
            ],
        ]);
    }
    
    /**
     * Provides a list of module routes to test.
     */
    public function getUpdateModuleRoutes() {
        return [
            [
                'update.module_update',
            ],
        ];
    }
    
    /**
     * Checks update theme tasks.
     *
     * @dataProvider getUpdateThemeRoutes
     */
    public function testUpdateThemeLocalTasks($route) {
        $this->assertLocalTasks($route, [
            0 => [
                'update.theme_update',
            ],
        ]);
    }
    
    /**
     * Provides a list of theme routes to test.
     */
    public function getUpdateThemeRoutes() {
        return [
            [
                'update.theme_update',
            ],
        ];
    }

}

Classes

Title Deprecated Summary
UpdateLocalTasksTest Tests existence of update local tasks.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.