
| Current Path : /var/www/html/rocksensor2/web/core/tests/Drupal/KernelTests/Core/Queue/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor2/web/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php |
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Core\Queue;
use Drupal\Core\DependencyInjection\DependencySerializationTrait;
use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Queue\DatabaseQueue;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;
/**
* Tests serializing a form with an injected DatabaseQueue instance.
*
* @group Queue
*/
class QueueSerializationTest extends KernelTestBase implements FormInterface {
use DependencySerializationTrait;
/**
* {@inheritdoc}
*/
protected static $modules = ['system', 'user'];
/**
* @var \Drupal\Core\Queue\DatabaseQueue
*/
protected DatabaseQueue $queue;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'queue_test_injection_form';
}
/**
* Process callback.
*
* @param array $element
* Form element
*
* @return array
* Processed element.
*/
public function process($element) {
return $element;
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['#process'][] = [$this, 'process'];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$form_state->setRebuild();
}
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->installEntitySchema('user');
// We only need a valid \Drupal\Core\Queue\DatabaseQueue object here, not
// an actual valid queue.
$this->queue = \Drupal::service('queue.database')->get('fake_a_queue');
$test_user = User::create([
'name' => 'foobar',
'mail' => 'foobar@example.com',
]);
$test_user->save();
\Drupal::service('current_user')->setAccount($test_user);
}
/**
* Tests queue injection serialization.
*/
public function testQueueSerialization(): void {
$form_state = new FormState();
$form_state->setRequestMethod('POST');
$form_state->setCached();
$form_builder = $this->container->get('form_builder');
$form_id = $form_builder->getFormId($this, $form_state);
$form = $form_builder->retrieveForm($form_id, $form_state);
$form_builder->prepareForm($form_id, $form, $form_state);
$form_builder->processForm($form_id, $form, $form_state);
}
}