Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,62 @@
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Component;
use Drupal\KernelTests\KernelTestBase;
use Symfony\Component\DomCrawler\Crawler;
use Symfony\Component\HttpFoundation\Request;
/**
* Tests the correct rendering of components.
*
* @group sdc
*/
final class ComponentRenderTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['system', 'sdc_test'];
/**
* Tests the CSS load order.
*/
public function testCssOrder(): void {
$this->container->get('theme_installer')->install(['sdc_theme_test']);
$build = [
'#type' => 'component',
'#component' => 'sdc_theme_test:css-load-order',
'#props' => [],
];
\Drupal::state()->set('sdc_test_component', $build);
$request = Request::create('/sdc-test-component');
$response = $this->container->get('http_kernel')->handle($request);
$output = $response->getContent();
$crawler = new Crawler($output);
// Assert that both CSS files are attached to the page.
$this->assertNotEmpty($crawler->filter('link[rel="stylesheet"][href*="css-load-order.css"]'));
$this->assertNotEmpty($crawler->filter('link[rel="stylesheet"][href*="css-order-dependent.css"]'));
$all_stylesheets = $crawler->filter('link[rel="stylesheet"]');
$component_position = NULL;
$dependent_position = NULL;
foreach ($all_stylesheets as $index => $stylesheet) {
$href = $stylesheet->attributes->getNamedItem('href')->nodeValue;
if (str_contains($href, 'css-load-order.css')) {
$component_position = $index;
}
if (str_contains($href, 'css-order-dependent.css')) {
$dependent_position = $index;
}
}
// This will assert that css-order-dependent.css is loaded before the
// component's css-load-order.css.
$this->assertGreaterThan($dependent_position, $component_position);
}
}

View File

@ -0,0 +1,141 @@
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Component\Render;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\Core\Url;
use Drupal\KernelTests\KernelTestBase;
/**
* Provides a test covering integration of FormattableMarkup with other systems.
*
* @group Render
*/
class FormattableMarkupKernelTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['system'];
/**
* Gets arguments for FormattableMarkup based on Url::fromUri() parameters.
*
* @param string $uri
* The URI of the resource.
* @param array $options
* The options to pass to Url::fromUri().
*
* @return array
* Array containing:
* - ':url': A URL string.
*
* @see \Drupal\Component\Render\FormattableMarkup
*/
protected static function getFormattableMarkupUriArgs($uri, $options = []) {
$args[':url'] = Url::fromUri($uri, $options)->toString();
return $args;
}
/**
* Tests URL ":placeholders" in \Drupal\Component\Render\FormattableMarkup.
*
* @dataProvider providerTestFormattableMarkupUri
*/
public function testFormattableMarkupUri($string, $uri, $options, $expected): void {
$args = self::getFormattableMarkupUriArgs($uri, $options);
$this->assertSame($expected, (string) new FormattableMarkup($string, $args));
}
/**
* @return array
* Data provider for testFormattableMarkupUri().
*/
public static function providerTestFormattableMarkupUri() {
$data = [];
$data['routed-url'] = [
'Hey giraffe <a href=":url">example</a>',
'route:system.admin',
[],
'Hey giraffe <a href="/admin">example</a>',
];
$data['routed-with-query'] = [
'Hey giraffe <a href=":url">example</a>',
'route:system.admin',
['query' => ['bar' => 'baz#']],
'Hey giraffe <a href="/admin?bar=baz%23">example</a>',
];
$data['routed-with-fragment'] = [
'Hey giraffe <a href=":url">example</a>',
'route:system.admin',
['fragment' => 'bar&lt;'],
'Hey giraffe <a href="/admin#bar&amp;lt;">example</a>',
];
$data['unrouted-url'] = [
'Hey giraffe <a href=":url">example</a>',
'base://foo',
[],
'Hey giraffe <a href="/foo">example</a>',
];
$data['unrouted-with-query'] = [
'Hey giraffe <a href=":url">example</a>',
'base://foo',
['query' => ['bar' => 'baz#']],
'Hey giraffe <a href="/foo?bar=baz%23">example</a>',
];
$data['unrouted-with-fragment'] = [
'Hey giraffe <a href=":url">example</a>',
'base://foo',
['fragment' => 'bar&lt;'],
'Hey giraffe <a href="/foo#bar&amp;lt;">example</a>',
];
$data['mailto-protocol'] = [
'Hey giraffe <a href=":url">example</a>',
'mailto:test@example.com',
[],
'Hey giraffe <a href="mailto:test@example.com">example</a>',
];
return $data;
}
/**
* @dataProvider providerTestFormattableMarkupUriWithException
*/
public function testFormattableMarkupUriWithExceptionUri($string, $uri): void {
// Should throw an \InvalidArgumentException, due to Uri::toString().
$this->expectException(\InvalidArgumentException::class);
$args = self::getFormattableMarkupUriArgs($uri);
new FormattableMarkup($string, $args);
}
/**
* @return array
* Data provider for testFormattableMarkupUriWithExceptionUri().
*/
public static function providerTestFormattableMarkupUriWithException() {
$data = [];
$data['js-protocol'] = [
'Hey giraffe <a href=":url">example</a>',
"javascript:alert('xss')",
];
$data['js-with-fromCharCode'] = [
'Hey giraffe <a href=":url">example</a>',
"javascript:alert(String.fromCharCode(88,83,83))",
];
$data['non-url-with-colon'] = [
'Hey giraffe <a href=":url">example</a>',
"llamas: they are not URLs",
];
$data['non-url-with-html'] = [
'Hey giraffe <a href=":url">example</a>',
'<span>not a url</span>',
];
return $data;
}
}