class ConfigTest

Same name in this branch
  1. 10 core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  2. 10 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  2. 9 core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  3. 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
  4. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  5. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  6. 8.9.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
  7. 11.x core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  8. 11.x core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  9. 11.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest

@coversDefaultClass Drupal\Composer\Plugin\VendorHardening\Config
@group VendorHardening

Hierarchy

  • class \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest implements \PHPUnit\Framework\TestCase

Expanded class hierarchy of ConfigTest

File

core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php, line 16

Namespace

Drupal\Tests\Composer\Plugin\VendorHardening
View source
class ConfigTest extends TestCase {
  use PhpUnitWarnings;
  
  /**
   * @covers ::getPathsForPackage
   */
  public function testGetPathsForPackageMixedCase() : void {
    $config = $this->getMockBuilder(Config::class)
      ->onlyMethods([
      'getAllCleanupPaths',
    ])
      ->disableOriginalConstructor()
      ->getMock();
    $config->expects($this->once())
      ->method('getAllCleanupPaths')
      ->willReturn([
      'package' => [
        'path',
      ],
    ]);
    $this->assertSame([
      'path',
    ], $config->getPathsForPackage('pACKage'));
  }
  
  /**
   * @covers ::getAllCleanupPaths
   */
  public function testNoRootMergeConfig() : void {
    // Root package has no extra field.
    $root = $this->createMock(RootPackageInterface::class);
    $root->expects($this->once())
      ->method('getExtra')
      ->willReturn([]);
    $config = new Config($root);
    $ref_default = new \ReflectionProperty($config, 'defaultConfig');
    $ref_plugin_config = new \ReflectionMethod($config, 'getAllCleanupPaths');
    $this->assertEquals($ref_default->getValue($config), $ref_plugin_config->invoke($config));
  }
  
  /**
   * @covers ::getAllCleanupPaths
   */
  public function testRootMergeConfig() : void {
    // Root package has configuration in extra.
    $root = $this->createMock(RootPackageInterface::class);
    $root->expects($this->once())
      ->method('getExtra')
      ->willReturn([
      'drupal-core-vendor-hardening' => [
        'isa/string' => 'test_dir',
        'an/array' => [
          'test_dir',
          'doc_dir',
        ],
      ],
    ]);
    $config = new Config($root);
    $ref_plugin_config = new \ReflectionMethod($config, 'getAllCleanupPaths');
    $plugin_config = $ref_plugin_config->invoke($config);
    $this->assertSame([
      'test_dir',
    ], $plugin_config['isa/string']);
    $this->assertSame([
      'test_dir',
      'doc_dir',
    ], $plugin_config['an/array']);
  }
  
  /**
   * @covers ::getAllCleanupPaths
   *
   * @runInSeparateProcess
   */
  public function testMixedCaseConfigCleanupPackages() : void {
    // Root package has configuration in extra.
    $root = $this->createMock(RootPackageInterface::class);
    $root->expects($this->once())
      ->method('getExtra')
      ->willReturn([
      'drupal-core-vendor-hardening' => [
        'NotMikey179/vfsStream' => [
          'src/test',
        ],
      ],
    ]);
    $config = new Config($root);
    $ref_plugin_config = new \ReflectionMethod($config, 'getAllCleanupPaths');
    // Put some mixed-case in the defaults.
    $ref_default = new \ReflectionProperty($config, 'defaultConfig');
    $ref_default->setValue($config, [
      'BeHatted/Mank' => [
        'tests',
      ],
      'SymFunic/HTTPFoundational' => [
        'src',
      ],
    ]);
    $plugin_config = $ref_plugin_config->invoke($config);
    foreach (array_keys($plugin_config) as $package_name) {
      $this->assertDoesNotMatchRegularExpression('/[A-Z]/', $package_name);
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary
ConfigTest::testGetPathsForPackageMixedCase public function @covers ::getPathsForPackage[[api-linebreak]]
ConfigTest::testMixedCaseConfigCleanupPackages public function @covers ::getAllCleanupPaths[[api-linebreak]]
ConfigTest::testNoRootMergeConfig public function @covers ::getAllCleanupPaths[[api-linebreak]]
ConfigTest::testRootMergeConfig public function @covers ::getAllCleanupPaths[[api-linebreak]]

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