ConfigTest.php

Namespace

Drupal\Tests\Composer\Plugin\ProjectMessage

File

core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Composer\Plugin\ProjectMessage;

use Composer\Package\RootPackageInterface;
use Drupal\Composer\Plugin\ProjectMessage\Message;
use org\bovigo\vfs\vfsStream;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;

/**
 * Tests Drupal\Composer\Plugin\ProjectMessage\Message.
 */
class ConfigTest extends TestCase {
  public static function setUpBeforeClass() : void {
    parent::setUpBeforeClass();
    vfsStream::setup('config_test', NULL, [
      'bespoke' => [
        'special_file.txt' => "Special\nFile",
      ],
    ]);
  }
  public static function provideGetMessageText() {
    return [
      [
        [],
        [],
      ],
      [
        [
          'Special',
          'File',
        ],
        [
          'drupal-core-project-message' => [
            'event-name-file' => vfsStream::url('config_test/bespoke/special_file.txt'),
          ],
        ],
      ],
      [
        [
          'I am the message.',
        ],
        [
          'drupal-core-project-message' => [
            'event-name-message' => [
              'I am the message.',
            ],
          ],
        ],
      ],
      [
        [
          'This message overrides file.',
        ],
        [
          'drupal-core-project-message' => [
            'event-name-message' => [
              'This message overrides file.',
            ],
            'event-name-file' => vfsStream::url('config_test/bespoke/special_file.txt'),
          ],
        ],
      ],
    ];
  }
  
  /**
   * Tests get message text.
   *
   * @legacy-covers ::getText
   */
  public function testGetMessageText($expected, $config) : void {
    // Root package has our config.
    $root = $this->createMock(RootPackageInterface::class);
    $root->expects($this->once())
      ->method('getExtra')
      ->willReturn($config);
    $message = new Message($root, 'event-name');
    $this->assertSame($expected, $message->getText());
  }
  
  /**
   * Tests default file.
   *
   * @legacy-covers ::getText
   */
  public function testDefaultFile() : void {
    // Root package has no extra field.
    $root = $this->createMock(RootPackageInterface::class);
    $root->expects($this->once())
      ->method('getExtra')
      ->willReturn([]);
    // The default is to try to read from event-name-message.txt, so we expect
    // config to try that.
    $message = $this->getMockBuilder(Message::class)
      ->setConstructorArgs([
      $root,
      'event-name',
    ])
      ->onlyMethods([
      'getMessageFromFile',
    ])
      ->getMock();
    $message->expects($this->once())
      ->method('getMessageFromFile')
      ->with('event-name-message.txt')
      ->willReturn([]);
    $this->assertSame([], $message->getText());
  }

}

Classes

Title Deprecated Summary
ConfigTest Tests Drupal\Composer\Plugin\ProjectMessage\Message.

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