View source
<?php
namespace Drupal\Tests\Component\Discovery;
use Drupal\Component\Discovery\YamlDiscovery;
use Drupal\Component\FileCache\FileCacheFactory;
use Drupal\Component\Serialization\Exception\InvalidDataTypeException;
use org\bovigo\vfs\vfsStream;
use org\bovigo\vfs\vfsStreamDirectory;
use org\bovigo\vfs\vfsStreamWrapper;
use PHPUnit\Framework\TestCase;
class YamlDiscoveryTest extends TestCase {
protected function setUp() : void {
FileCacheFactory::setPrefix('prefix');
}
public function testDiscovery() {
vfsStreamWrapper::register();
$root = new vfsStreamDirectory('modules');
vfsStreamWrapper::setRoot($root);
$url = vfsStream::url('modules');
mkdir($url . '/test_1');
file_put_contents($url . '/test_1/test_1.test.yml', 'name: test');
file_put_contents($url . '/test_1/test_2.test.yml', 'name: test');
mkdir($url . '/test_2');
file_put_contents($url . '/test_2/test_3.test.yml', 'name: test');
file_put_contents($url . '/test_2/test_4.test.yml', '');
$directories = [
'test_1' => $url . '/test_1',
'test_2' => $url . '/test_1',
'test_3' => $url . '/test_2',
'test_4' => $url . '/test_2',
];
$discovery = new YamlDiscovery('test', $directories);
$data = $discovery
->findAll();
$this
->assertCount(4, $data);
$this
->assertArrayHasKey('test_1', $data);
$this
->assertArrayHasKey('test_2', $data);
$this
->assertArrayHasKey('test_3', $data);
$this
->assertArrayHasKey('test_4', $data);
foreach ([
'test_1',
'test_2',
'test_3',
] as $key) {
$this
->assertArrayHasKey('name', $data[$key]);
$this
->assertEquals('test', $data[$key]['name']);
}
$this
->assertSame([], $data['test_4']);
}
public function testForBrokenYml() {
vfsStreamWrapper::register();
$root = new vfsStreamDirectory('modules');
vfsStreamWrapper::setRoot($root);
$url = vfsStream::url('modules');
mkdir($url . '/test_broken');
file_put_contents($url . '/test_broken/test_broken.test.yml', "broken:\n:");
$this
->expectException(InvalidDataTypeException::class);
$this
->expectExceptionMessage('vfs://modules/test_broken/test_broken.test.yml');
$directories = [
'test_broken' => $url . '/test_broken',
];
$discovery = new YamlDiscovery('test', $directories);
$discovery
->findAll();
}
}