ImageTest.php

Same filename in this branch
  1. 11.x core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTest.php
  2. 11.x core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Image/ImageTest.php
Same filename and directory in other branches
  1. 9 core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTest.php
  2. 9 core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
  3. 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php
  4. 9 core/tests/Drupal/Tests/Component/Utility/ImageTest.php
  5. 8.9.x core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
  6. 8.9.x core/tests/Drupal/Tests/Core/Image/ImageTest.php
  7. 8.9.x core/tests/Drupal/Tests/Component/Utility/ImageTest.php
  8. 10 core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTest.php
  9. 10 core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php
  10. 10 core/tests/Drupal/Tests/Core/Image/ImageTest.php
  11. 10 core/tests/Drupal/Tests/Component/Utility/ImageTest.php

Namespace

Drupal\Tests\Component\Utility

File

core/tests/Drupal/Tests/Component/Utility/ImageTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Component\Utility;

use Drupal\Component\Utility\Image;
use PHPUnit\Framework\TestCase;

/**
 * @coversDefaultClass \Drupal\Component\Utility\Image
 * @group Image
 */
class ImageTest extends TestCase {
  
  /**
   * Tests all control flow branches in image_dimensions_scale().
   *
   * @dataProvider providerTestScaleDimensions
   */
  public function testScaleDimensions($input, $output) : void {
    // Process the test dataset.
    $return_value = Image::scaleDimensions($input['dimensions'], $input['width'], $input['height'], $input['upscale']);
    // Check the width.
    $this->assertEquals($output['dimensions']['width'], $input['dimensions']['width'], sprintf('Computed width (%s) does not equal expected width (%s)', $output['dimensions']['width'], $input['dimensions']['width']));
    // Check the height.
    $this->assertEquals($output['dimensions']['height'], $input['dimensions']['height'], sprintf('Computed height (%s) does not equal expected height (%s)', $output['dimensions']['height'], $input['dimensions']['height']));
    // Check the return value.
    $this->assertEquals($output['return_value'], $return_value, 'Incorrect return value.');
  }
  
  /**
   * Provides data for image dimension scale tests.
   *
   * @return array
   *   Keyed array containing:
   *   - 'input' - Array which contains input for Image::scaleDimensions().
   *   - 'output' - Array which contains expected output after passing
   *     through Image::scaleDimensions. Also contains a boolean
   *     'return_value' which should match the expected return value.
   *
   * @see testScaleDimensions()
   */
  public static function providerTestScaleDimensions() {
    // Define input / output datasets to test different branch conditions.
    $tests = [];
    // Test branch conditions:
    // - No height.
    // - Upscale, don't need to upscale.
    $tests[] = [
      'input' => [
        'dimensions' => [
          'width' => 1000,
          'height' => 2000,
        ],
        'width' => 200,
        'height' => NULL,
        'upscale' => TRUE,
      ],
      'output' => [
        'dimensions' => [
          'width' => 200,
          'height' => 400,
        ],
        'return_value' => TRUE,
      ],
    ];
    // Test branch conditions:
    // - No width.
    // - Don't upscale, don't need to upscale.
    $tests[] = [
      'input' => [
        'dimensions' => [
          'width' => 1000,
          'height' => 800,
        ],
        'width' => NULL,
        'height' => 140,
        'upscale' => FALSE,
      ],
      'output' => [
        'dimensions' => [
          'width' => 175,
          'height' => 140,
        ],
        'return_value' => TRUE,
      ],
    ];
    // Test branch conditions:
    // - Source aspect ratio greater than target.
    // - Upscale, need to upscale.
    $tests[] = [
      'input' => [
        'dimensions' => [
          'width' => 8,
          'height' => 20,
        ],
        'width' => 200,
        'height' => 140,
        'upscale' => TRUE,
      ],
      'output' => [
        'dimensions' => [
          'width' => 56,
          'height' => 140,
        ],
        'return_value' => TRUE,
      ],
    ];
    // Test branch condition: target aspect ratio greater than source.
    $tests[] = [
      'input' => [
        'dimensions' => [
          'width' => 2000,
          'height' => 800,
        ],
        'width' => 200,
        'height' => 140,
        'upscale' => FALSE,
      ],
      'output' => [
        'dimensions' => [
          'width' => 200,
          'height' => 80,
        ],
        'return_value' => TRUE,
      ],
    ];
    // Test branch condition: don't upscale, need to upscale.
    $tests[] = [
      'input' => [
        'dimensions' => [
          'width' => 100,
          'height' => 50,
        ],
        'width' => 200,
        'height' => 140,
        'upscale' => FALSE,
      ],
      'output' => [
        'dimensions' => [
          'width' => 100,
          'height' => 50,
        ],
        'return_value' => FALSE,
      ],
    ];
    return $tests;
  }
  
  /**
   * @covers ::getKeywordOffset
   */
  public function testInvalidGetKeywordOffset() : void {
    $this->expectException(\InvalidArgumentException::class);
    $this->expectExceptionMessage('Invalid anchor \'foo\' provided to getKeywordOffset()');
    Image::getKeywordOffset('foo', 0, 0);
  }
  
  /**
   * @covers ::getKeywordOffset
   *
   * @dataProvider providerTestGetKeywordOffset
   */
  public function testGetKeywordOffset(array $input, int $expected) : void {
    $this->assertSame($expected, Image::getKeywordOffset($input['anchor'], $input['current'], $input['new']));
  }
  
  /**
   * Provides data for testGetKeywordOffset().
   *
   * @return \Generator
   *   Test scenarios.
   *
   * @see testGetKeywordOffset()
   */
  public static function providerTestGetKeywordOffset() : \Generator {
    (yield "'left' => return 0" => [
      'input' => [
        'anchor' => 'left',
        'current' => 100,
        'new' => 20,
      ],
      'expected' => 0,
    ]);
    (yield "'top' => return 0" => [
      'input' => [
        'anchor' => 'top',
        'current' => 100,
        'new' => 20,
      ],
      'expected' => 0,
    ]);
    (yield "'right' => return (current - new)" => [
      'input' => [
        'anchor' => 'right',
        'current' => 100,
        'new' => 20,
      ],
      'expected' => 80,
    ]);
    (yield "'bottom' => return (current - new)" => [
      'input' => [
        'anchor' => 'bottom',
        'current' => 100,
        'new' => 30,
      ],
      'expected' => 70,
    ]);
    (yield "a) 'center' => return (current - new)/2" => [
      'input' => [
        'anchor' => 'center',
        'current' => 100,
        'new' => 20,
      ],
      'expected' => 40,
    ]);
    (yield "b) 'center' => return (current - new)/2" => [
      'input' => [
        'anchor' => 'center',
        'current' => 100,
        'new' => 91,
      ],
      'expected' => 5,
    ]);
  }

}

Classes

Title Deprecated Summary
ImageTest @coversDefaultClass \Drupal\Component\Utility\Image[[api-linebreak]] @group Image

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