UpdateReportTest.php

Same filename and directory in other branches
  1. 9 core/modules/update/tests/src/Kernel/UpdateReportTest.php
  2. 10 core/modules/update/tests/src/Kernel/UpdateReportTest.php
  3. 11.x core/modules/update/tests/src/Kernel/UpdateReportTest.php

Namespace

Drupal\Tests\update\Kernel

File

core/modules/update/tests/src/Kernel/UpdateReportTest.php

View source
<?php

namespace Drupal\Tests\update\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Tests update report functionality.
 *
 * @covers template_preprocess_update_report()
 * @group update
 */
class UpdateReportTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'system',
        'update',
    ];
    
    /**
     * @dataProvider providerTemplatePreprocessUpdateReport
     */
    public function testTemplatePreprocessUpdateReport($variables) {
        \Drupal::moduleHandler()->loadInclude('update', 'inc', 'update.report');
        // The function should run without an exception being thrown when the value
        // of $variables['data'] is not set or is not an array.
        template_preprocess_update_report($variables);
        // Test that the key "no_updates_message" has been set.
        $this->assertArrayHasKey('no_updates_message', $variables);
    }
    
    /**
     * Provides data for testTemplatePreprocessUpdateReport().
     *
     * @return array
     *   Array of $variables for template_preprocess_update_report().
     */
    public function providerTemplatePreprocessUpdateReport() {
        return [
            '$variables with data not set' => [
                [],
            ],
            '$variables with data as an interger' => [
                [
                    'data' => 4,
                ],
            ],
            '$variables with data as a string' => [
                [
                    'data' => 'I am a string',
                ],
            ],
        ];
    }

}

Classes

Title Deprecated Summary
UpdateReportTest Tests update report functionality.

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