Skip to content
Snippets Groups Projects
Unverified Commit 9306f069 authored by Alex Pott's avatar Alex Pott
Browse files

Revert "Issue #3162016 by longwave, andypost, Hardik_Patel_12, catch,...

Revert "Issue #3162016 by longwave, andypost, Hardik_Patel_12, catch, alexpott, daffie, Kristen Pol: [Symfony 6] Retrieving a non-string value from "Symfony\Component\HttpFoundation\InputBag::get()" is deprecated"

This reverts commit 8b8fc1ef.
parent 63c14b7c
No related branches found
No related tags found
21 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1896Issue #2940605: Can only intentionally re-render an entity with references 20 times,!1101Issue #2412669 by claudiu.cristea, Julfabre, sidharrell, catch, daffie,...,!1039Issue #2556069 by claudiu.cristea, bnjmnm, lauriii, pfrenssen, Tim Bozeman,...,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!1012Issue #3226887: Hreflang on non-canonical content pages,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links,!825Issue #3211838 by mondrake, longwave: Convert assertions involving use of...,!795Issue #3212005 by guilhermevp, tedbow, phenaproxima: Add @throws docs to...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!594Put each entity type table into a details element on admin/config/regional/content-language,!592Issue #2957953: Editing menus user-experience has regressed,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493,!512Issue #3207771: Menu UI node type form documentation points to non-existent function,!485Sets the autocomplete attribute for username/password input field on login form.,!449Issue #2784233: Allow multiple vocabularies in the taxonomy filter,!231Issue #2671162: summary text wysiwyg patch working fine on 9.2.0-dev,!43Resolve #3173180: Add UI for 'loading' html attribute to images,!30Issue #3182188: Updates composer usage to point at ./vendor/bin/composer
Showing
with 40 additions and 74 deletions
...@@ -128,7 +128,7 @@ public function processAttachments(AttachmentsInterface $response) { ...@@ -128,7 +128,7 @@ public function processAttachments(AttachmentsInterface $response) {
* An array of commands ready to be returned as JSON. * An array of commands ready to be returned as JSON.
*/ */
protected function buildAttachmentsCommands(AjaxResponse $response, Request $request) { protected function buildAttachmentsCommands(AjaxResponse $response, Request $request) {
$ajax_page_state = $request->request->all('ajax_page_state'); $ajax_page_state = $request->request->get('ajax_page_state');
// Aggregate CSS/JS if necessary, but only during normal site operation. // Aggregate CSS/JS if necessary, but only during normal site operation.
$optimize_css = !defined('MAINTENANCE_MODE') && $this->config->get('css.preprocess'); $optimize_css = !defined('MAINTENANCE_MODE') && $this->config->get('css.preprocess');
......
...@@ -31,7 +31,7 @@ public function getContext($query_arg = NULL) { ...@@ -31,7 +31,7 @@ public function getContext($query_arg = NULL) {
return ($value !== NULL) ? $value : ''; return ($value !== NULL) ? $value : '';
} }
elseif ($this->requestStack->getCurrentRequest()->query->has($query_arg)) { elseif ($this->requestStack->getCurrentRequest()->query->has($query_arg)) {
$value = $this->requestStack->getCurrentRequest()->query->all()[$query_arg]; $value = $this->requestStack->getCurrentRequest()->query->get($query_arg);
if (is_array($value)) { if (is_array($value)) {
return http_build_query($value); return http_build_query($value);
} }
......
...@@ -61,7 +61,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch ...@@ -61,7 +61,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch
$title = isset($main_content['#title']) ? $main_content['#title'] : $this->titleResolver->getTitle($request, $route_match->getRouteObject()); $title = isset($main_content['#title']) ? $main_content['#title'] : $this->titleResolver->getTitle($request, $route_match->getRouteObject());
// Determine the dialog options and the target for the OpenDialogCommand. // Determine the dialog options and the target for the OpenDialogCommand.
$options = $request->request->all('dialogOptions'); $options = $request->request->get('dialogOptions', []);
$target = $this->determineTargetSelector($options, $route_match); $target = $this->determineTargetSelector($options, $route_match);
$response->addCommand(new OpenDialogCommand($target, $title, $content, $options)); $response->addCommand(new OpenDialogCommand($target, $title, $content, $options));
......
...@@ -31,7 +31,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch ...@@ -31,7 +31,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch
// Determine the title: use the title provided by the main content if any, // Determine the title: use the title provided by the main content if any,
// otherwise get it from the routing information. // otherwise get it from the routing information.
$options = $request->request->all('dialogOptions'); $options = $request->request->get('dialogOptions', []);
$response->addCommand(new OpenModalDialogCommand($title, $content, $options)); $response->addCommand(new OpenModalDialogCommand($title, $content, $options));
return $response; return $response;
......
...@@ -64,7 +64,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch ...@@ -64,7 +64,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch
// Determine the title: use the title provided by the main content if any, // Determine the title: use the title provided by the main content if any,
// otherwise get it from the routing information. // otherwise get it from the routing information.
$options = $request->request->all('dialogOptions'); $options = $request->request->get('dialogOptions', []);
$response->addCommand(new OpenOffCanvasDialogCommand($title, $content, $options, NULL, $this->position)); $response->addCommand(new OpenOffCanvasDialogCommand($title, $content, $options, NULL, $this->position));
return $response; return $response;
} }
......
...@@ -65,7 +65,7 @@ public function __construct(CsrfTokenGenerator $token_generator, ConfigFactoryIn ...@@ -65,7 +65,7 @@ public function __construct(CsrfTokenGenerator $token_generator, ConfigFactoryIn
* {@inheritdoc} * {@inheritdoc}
*/ */
public function applies(RouteMatchInterface $route_match) { public function applies(RouteMatchInterface $route_match) {
$ajax_page_state = $this->requestStack->getCurrentRequest()->request->all('ajax_page_state'); $ajax_page_state = $this->requestStack->getCurrentRequest()->request->get('ajax_page_state');
return !empty($ajax_page_state['theme']) && isset($ajax_page_state['theme_token']); return !empty($ajax_page_state['theme']) && isset($ajax_page_state['theme_token']);
} }
...@@ -73,7 +73,7 @@ public function applies(RouteMatchInterface $route_match) { ...@@ -73,7 +73,7 @@ public function applies(RouteMatchInterface $route_match) {
* {@inheritdoc} * {@inheritdoc}
*/ */
public function determineActiveTheme(RouteMatchInterface $route_match) { public function determineActiveTheme(RouteMatchInterface $route_match) {
$ajax_page_state = $this->requestStack->getCurrentRequest()->request->all('ajax_page_state'); $ajax_page_state = $this->requestStack->getCurrentRequest()->request->get('ajax_page_state');
$theme = $ajax_page_state['theme']; $theme = $ajax_page_state['theme'];
$token = $ajax_page_state['theme_token']; $token = $ajax_page_state['theme_token'];
......
...@@ -337,11 +337,11 @@ public function renderNewCommentsNodeLinks(Request $request) { ...@@ -337,11 +337,11 @@ public function renderNewCommentsNodeLinks(Request $request) {
throw new AccessDeniedHttpException(); throw new AccessDeniedHttpException();
} }
if (!$request->request->has('node_ids') || !$request->request->has('field_name')) { $nids = $request->request->get('node_ids');
$field_name = $request->request->get('field_name');
if (!isset($nids)) {
throw new NotFoundHttpException(); throw new NotFoundHttpException();
} }
$nids = $request->request->all('node_ids');
$field_name = $request->request->get('field_name');
// Only handle up to 100 nodes. // Only handle up to 100 nodes.
$nids = array_slice($nids, 0, 100); $nids = array_slice($nids, 0, 100);
......
...@@ -60,15 +60,15 @@ public static function create(ContainerInterface $container) { ...@@ -60,15 +60,15 @@ public static function create(ContainerInterface $container) {
* @see contextual_preprocess() * @see contextual_preprocess()
*/ */
public function render(Request $request) { public function render(Request $request) {
if (!$request->request->has('ids')) { $ids = $request->request->get('ids');
if (!isset($ids)) {
throw new BadRequestHttpException('No contextual ids specified.'); throw new BadRequestHttpException('No contextual ids specified.');
} }
$ids = $request->request->all('ids');
if (!$request->request->has('tokens')) { $tokens = $request->request->get('tokens');
if (!isset($tokens)) {
throw new BadRequestHttpException('No contextual ID tokens specified.'); throw new BadRequestHttpException('No contextual ID tokens specified.');
} }
$tokens = $request->request->all('tokens');
$rendered = []; $rendered = [];
foreach ($ids as $key => $id) { foreach ($ids as $key => $id) {
......
...@@ -206,7 +206,7 @@ public function save(array $form, FormStateInterface $form_state) { ...@@ -206,7 +206,7 @@ public function save(array $form, FormStateInterface $form_state) {
$this->messenger()->addStatus($this->t('Saved %label configuration.', ['%label' => $this->entity->getLabel()])); $this->messenger()->addStatus($this->t('Saved %label configuration.', ['%label' => $this->entity->getLabel()]));
$request = $this->getRequest(); $request = $this->getRequest();
if (($destinations = $request->query->all('destinations')) && $next_destination = FieldUI::getNextDestination($destinations)) { if (($destinations = $request->query->get('destinations')) && $next_destination = FieldUI::getNextDestination($destinations)) {
$request->query->remove('destinations'); $request->query->remove('destinations');
$form_state->setRedirectUrl($next_destination); $form_state->setRedirectUrl($next_destination);
} }
......
...@@ -229,7 +229,7 @@ public function save(array $form, FormStateInterface $form_state) { ...@@ -229,7 +229,7 @@ public function save(array $form, FormStateInterface $form_state) {
$this->entity->save(); $this->entity->save();
$this->messenger()->addStatus($this->t('Updated field %label field settings.', ['%label' => $field_label])); $this->messenger()->addStatus($this->t('Updated field %label field settings.', ['%label' => $field_label]));
$request = $this->getRequest(); $request = $this->getRequest();
if (($destinations = $request->query->all('destinations')) && $next_destination = FieldUI::getNextDestination($destinations)) { if (($destinations = $request->query->get('destinations')) && $next_destination = FieldUI::getNextDestination($destinations)) {
$request->query->remove('destinations'); $request->query->remove('destinations');
$form_state->setRedirectUrl($next_destination); $form_state->setRedirectUrl($next_destination);
} }
......
...@@ -28,10 +28,10 @@ public function getNodeReadTimestamps(Request $request) { ...@@ -28,10 +28,10 @@ public function getNodeReadTimestamps(Request $request) {
throw new AccessDeniedHttpException(); throw new AccessDeniedHttpException();
} }
if (!$request->request->has('node_ids')) { $nids = $request->request->get('node_ids');
if (!isset($nids)) {
throw new NotFoundHttpException(); throw new NotFoundHttpException();
} }
$nids = $request->request->all('node_ids');
return new JsonResponse(history_read_multiple($nids)); return new JsonResponse(history_read_multiple($nids));
} }
......
...@@ -1217,13 +1217,13 @@ protected function entityExists(EntityInterface $entity) { ...@@ -1217,13 +1217,13 @@ protected function entityExists(EntityInterface $entity) {
*/ */
protected function getJsonApiParams(Request $request, ResourceType $resource_type) { protected function getJsonApiParams(Request $request, ResourceType $resource_type) {
if ($request->query->has('filter')) { if ($request->query->has('filter')) {
$params[Filter::KEY_NAME] = Filter::createFromQueryParameter($request->query->all('filter'), $resource_type, $this->fieldResolver); $params[Filter::KEY_NAME] = Filter::createFromQueryParameter($request->query->get('filter'), $resource_type, $this->fieldResolver);
} }
if ($request->query->has('sort')) { if ($request->query->has('sort')) {
$params[Sort::KEY_NAME] = Sort::createFromQueryParameter($request->query->all()['sort'] ?? NULL); $params[Sort::KEY_NAME] = Sort::createFromQueryParameter($request->query->get('sort'));
} }
if ($request->query->has('page')) { if ($request->query->has('page')) {
$params[OffsetPage::KEY_NAME] = OffsetPage::createFromQueryParameter($request->query->all('page')); $params[OffsetPage::KEY_NAME] = OffsetPage::createFromQueryParameter($request->query->get('page'));
} }
else { else {
$params[OffsetPage::KEY_NAME] = OffsetPage::createFromQueryParameter(['page' => ['offset' => OffsetPage::DEFAULT_OFFSET, 'limit' => OffsetPage::SIZE_MAX]]); $params[OffsetPage::KEY_NAME] = OffsetPage::createFromQueryParameter(['page' => ['offset' => OffsetPage::DEFAULT_OFFSET, 'limit' => OffsetPage::SIZE_MAX]]);
......
...@@ -146,10 +146,10 @@ protected static function generateContext(Request $request) { ...@@ -146,10 +146,10 @@ protected static function generateContext(Request $request) {
'account' => NULL, 'account' => NULL,
'sparse_fieldset' => NULL, 'sparse_fieldset' => NULL,
]; ];
if ($request->query->has('fields')) { if ($request->query->get('fields')) {
$context['sparse_fieldset'] = array_map(function ($item) { $context['sparse_fieldset'] = array_map(function ($item) {
return explode(',', $item); return explode(',', $item);
}, $request->query->all('fields')); }, $request->query->get('fields'));
} }
return $context; return $context;
} }
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
namespace Drupal\Tests\jsonapi\Kernel\Controller; namespace Drupal\Tests\jsonapi\Kernel\Controller;
use Drupal\Core\Field\FieldStorageDefinitionInterface; use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\Core\Http\InputBag;
use Drupal\jsonapi\CacheableResourceResponse; use Drupal\jsonapi\CacheableResourceResponse;
use Drupal\jsonapi\ResourceType\ResourceType; use Drupal\jsonapi\ResourceType\ResourceType;
use Drupal\jsonapi\JsonApiResource\Data; use Drupal\jsonapi\JsonApiResource\Data;
...@@ -14,6 +13,7 @@ ...@@ -14,6 +13,7 @@
use Drupal\user\Entity\Role; use Drupal\user\Entity\Role;
use Drupal\user\Entity\User; use Drupal\user\Entity\User;
use Drupal\user\RoleInterface; use Drupal\user\RoleInterface;
use Symfony\Component\HttpFoundation\ParameterBag;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
/** /**
...@@ -186,7 +186,7 @@ protected function createEntityResource() { ...@@ -186,7 +186,7 @@ protected function createEntityResource() {
*/ */
public function testGetPagedCollection() { public function testGetPagedCollection() {
$request = Request::create('/jsonapi/node/article'); $request = Request::create('/jsonapi/node/article');
$request->query = new InputBag([ $request->query = new ParameterBag([
'sort' => 'nid', 'sort' => 'nid',
'page' => [ 'page' => [
'offset' => 1, 'offset' => 1,
...@@ -215,7 +215,7 @@ public function testGetPagedCollection() { ...@@ -215,7 +215,7 @@ public function testGetPagedCollection() {
*/ */
public function testGetEmptyCollection() { public function testGetEmptyCollection() {
$request = Request::create('/jsonapi/node/article'); $request = Request::create('/jsonapi/node/article');
$request->query = new InputBag(['filter' => ['id' => 'invalid']]); $request->query = new ParameterBag(['filter' => ['id' => 'invalid']]);
// Get the response. // Get the response.
$resource_type = new ResourceType('node', 'article', NULL); $resource_type = new ResourceType('node', 'article', NULL);
......
...@@ -3,9 +3,7 @@ ...@@ -3,9 +3,7 @@
namespace Drupal\media_library; namespace Drupal\media_library;
use Drupal\Component\Utility\Crypt; use Drupal\Component\Utility\Crypt;
use Drupal\Core\Http\InputBag;
use Drupal\Core\Site\Settings; use Drupal\Core\Site\Settings;
use Symfony\Component\HttpFoundation\InputBag as SymfonyInputBag;
use Symfony\Component\HttpFoundation\ParameterBag; use Symfony\Component\HttpFoundation\ParameterBag;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
...@@ -96,20 +94,15 @@ public static function create($opener_id, array $allowed_media_type_ids, $select ...@@ -96,20 +94,15 @@ public static function create($opener_id, array $allowed_media_type_ids, $select
*/ */
public static function fromRequest(Request $request) { public static function fromRequest(Request $request) {
$query = $request->query; $query = $request->query;
// Replace ParameterBag with InputBag for compatibility with Symfony 5.
// @todo Remove this when Symfony 4 is no longer supported.
if (!($query instanceof InputBag || $query instanceof SymfonyInputBag)) {
$query = new InputBag($query->all());
}
// Create a MediaLibraryState object through the create method to make sure // Create a MediaLibraryState object through the create method to make sure
// all validation runs. // all validation runs.
$state = static::create( $state = static::create(
$query->get('media_library_opener_id'), $query->get('media_library_opener_id'),
$query->all('media_library_allowed_types'), $query->get('media_library_allowed_types', []),
$query->get('media_library_selected_type'), $query->get('media_library_selected_type'),
$query->get('media_library_remaining'), $query->get('media_library_remaining'),
$query->all('media_library_opener_parameters') $query->get('media_library_opener_parameters', [])
); );
// The request parameters need to contain a valid hash to prevent a // The request parameters need to contain a valid hash to prevent a
...@@ -229,7 +222,7 @@ public function getOpenerId() { ...@@ -229,7 +222,7 @@ public function getOpenerId() {
* The media type IDs. * The media type IDs.
*/ */
public function getAllowedTypeIds() { public function getAllowedTypeIds() {
return $this->all('media_library_allowed_types'); return $this->get('media_library_allowed_types');
} }
/** /**
...@@ -273,29 +266,7 @@ public function getAvailableSlots() { ...@@ -273,29 +266,7 @@ public function getAvailableSlots() {
* An associative array of all opener-specific parameter values. * An associative array of all opener-specific parameter values.
*/ */
public function getOpenerParameters() { public function getOpenerParameters() {
return $this->all('media_library_opener_parameters'); return $this->get('media_library_opener_parameters', []);
}
/**
* Returns the parameters.
*
* @param string|null $key
* The name of the parameter to return or null to get them all.
*
* @return array
* An array of parameters.
*/
public function all(string $key = NULL): array {
if ($key === NULL) {
return $this->parameters;
}
$value = $this->parameters[$key] ?? [];
if (!is_array($value)) {
throw new \UnexpectedValueException(sprintf('Unexpected value for parameter "%s": expecting "array", got "%s".', $key, get_debug_type($value)));
}
return $value;
} }
} }
...@@ -50,7 +50,7 @@ public static function create(ContainerInterface $container) { ...@@ -50,7 +50,7 @@ public static function create(ContainerInterface $container) {
*/ */
public function getParentOptions(Request $request) { public function getParentOptions(Request $request) {
$available_menus = []; $available_menus = [];
if ($menus = $request->request->all('menus')) { if ($menus = $request->request->get('menus')) {
foreach ($menus as $menu) { foreach ($menus as $menu) {
$available_menus[$menu] = $menu; $available_menus[$menu] = $menu;
} }
......
...@@ -116,11 +116,11 @@ public static function create(ContainerInterface $container) { ...@@ -116,11 +116,11 @@ public static function create(ContainerInterface $container) {
* The JSON response. * The JSON response.
*/ */
public function metadata(Request $request) { public function metadata(Request $request) {
if (!$request->request->has('fields')) { $fields = $request->request->get('fields');
if (!isset($fields)) {
throw new NotFoundHttpException(); throw new NotFoundHttpException();
} }
$fields = $request->request->all('fields'); $entities = $request->request->get('entities');
$entities = $request->request->all('entities');
$metadata = []; $metadata = [];
foreach ($fields as $field) { foreach ($fields as $field) {
...@@ -147,7 +147,7 @@ public function metadata(Request $request) { ...@@ -147,7 +147,7 @@ public function metadata(Request $request) {
// If the entity information for this field is requested, include it. // If the entity information for this field is requested, include it.
$entity_id = $entity->getEntityTypeId() . '/' . $entity_id; $entity_id = $entity->getEntityTypeId() . '/' . $entity_id;
if (in_array($entity_id, $entities, TRUE) && !isset($metadata[$entity_id])) { if (is_array($entities) && in_array($entity_id, $entities) && !isset($metadata[$entity_id])) {
$metadata[$entity_id] = $this->metadataGenerator->generateEntityMetadata($entity); $metadata[$entity_id] = $this->metadataGenerator->generateEntityMetadata($entity);
} }
...@@ -168,10 +168,10 @@ public function metadata(Request $request) { ...@@ -168,10 +168,10 @@ public function metadata(Request $request) {
*/ */
public function attachments(Request $request) { public function attachments(Request $request) {
$response = new AjaxResponse(); $response = new AjaxResponse();
if (!$request->request->has('editors')) { $editors = $request->request->get('editors');
if (!isset($editors)) {
throw new NotFoundHttpException(); throw new NotFoundHttpException();
} }
$editors = $request->request->all('editors');
$response->setAttachments($this->editorSelector->getEditorAttachments($editors)); $response->setAttachments($this->editorSelector->getEditorAttachments($editors));
...@@ -229,7 +229,7 @@ public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view ...@@ -229,7 +229,7 @@ public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view
// Re-render the updated field for other view modes (i.e. for other // Re-render the updated field for other view modes (i.e. for other
// instances of the same logical field on the user's page). // instances of the same logical field on the user's page).
$other_view_mode_ids = $request->request->all('other_view_modes'); $other_view_mode_ids = $request->request->get('other_view_modes') ?: [];
$other_view_modes = array_map($render_field_in_view_mode, array_combine($other_view_mode_ids, $other_view_mode_ids)); $other_view_modes = array_map($render_field_in_view_mode, array_combine($other_view_mode_ids, $other_view_mode_ids));
$response->addCommand(new FieldFormSavedCommand($output, $other_view_modes)); $response->addCommand(new FieldFormSavedCommand($output, $other_view_modes));
......
...@@ -60,7 +60,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch ...@@ -60,7 +60,7 @@ public function renderResponse(array $main_content, Request $request, RouteMatch
// Determine the title: use the title provided by the main content if any, // Determine the title: use the title provided by the main content if any,
// otherwise get it from the routing information. // otherwise get it from the routing information.
$options = $request->request->all('dialogOptions'); $options = $request->request->get('dialogOptions', []);
// Override width option. // Override width option.
switch ($this->mode) { switch ($this->mode) {
case 'wide': case 'wide':
......
...@@ -66,7 +66,7 @@ public function getArgument() { ...@@ -66,7 +66,7 @@ public function getArgument() {
$current_request = $this->view->getRequest(); $current_request = $this->view->getRequest();
if ($current_request->query->has($this->options['query_param'])) { if ($current_request->query->has($this->options['query_param'])) {
$param = $current_request->query->all()[$this->options['query_param']] ?? NULL; $param = $current_request->query->get($this->options['query_param']);
if (is_array($param)) { if (is_array($param)) {
$conjunction = ($this->options['multiple'] == 'and') ? ',' : '+'; $conjunction = ($this->options['multiple'] == 'and') ? ',' : '+';
$param = implode($conjunction, $param); $param = implode($conjunction, $param);
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
namespace Drupal\Tests\Core\Theme; namespace Drupal\Tests\Core\Theme;
use Drupal\Core\Access\CsrfTokenGenerator; use Drupal\Core\Access\CsrfTokenGenerator;
use Drupal\Core\Http\InputBag;
use Drupal\Core\Routing\RouteMatch; use Drupal\Core\Routing\RouteMatch;
use Drupal\Core\Theme\AjaxBasePageNegotiator; use Drupal\Core\Theme\AjaxBasePageNegotiator;
use Drupal\Tests\UnitTestCase; use Drupal\Tests\UnitTestCase;
...@@ -56,7 +55,6 @@ public function setUp(): void { ...@@ -56,7 +55,6 @@ public function setUp(): void {
*/ */
public function testApplies($request_data, $expected) { public function testApplies($request_data, $expected) {
$request = new Request([], $request_data); $request = new Request([], $request_data);
$request->request = new InputBag($request->request->all());
$route_match = RouteMatch::createFromRequest($request); $route_match = RouteMatch::createFromRequest($request);
$this->requestStack->push($request); $this->requestStack->push($request);
...@@ -81,7 +79,6 @@ public function testDetermineActiveThemeValidToken() { ...@@ -81,7 +79,6 @@ public function testDetermineActiveThemeValidToken() {
$theme_token = 'valid_theme_token'; $theme_token = 'valid_theme_token';
$request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]); $request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]);
$request->request = new InputBag($request->request->all());
$this->requestStack->push($request); $this->requestStack->push($request);
$route_match = RouteMatch::createFromRequest($request); $route_match = RouteMatch::createFromRequest($request);
...@@ -99,7 +96,6 @@ public function testDetermineActiveThemeInvalidToken() { ...@@ -99,7 +96,6 @@ public function testDetermineActiveThemeInvalidToken() {
$theme_token = 'invalid_theme_token'; $theme_token = 'invalid_theme_token';
$request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]); $request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]);
$request->request = new InputBag($request->request->all());
$this->requestStack->push($request); $this->requestStack->push($request);
$route_match = RouteMatch::createFromRequest($request); $route_match = RouteMatch::createFromRequest($request);
...@@ -119,7 +115,6 @@ public function testDetermineActiveThemeDefaultTheme() { ...@@ -119,7 +115,6 @@ public function testDetermineActiveThemeDefaultTheme() {
$theme_token = ''; $theme_token = '';
$request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]); $request = new Request([], ['ajax_page_state' => ['theme' => $theme, 'theme_token' => $theme_token]]);
$request->request = new InputBag($request->request->all());
$this->requestStack->push($request); $this->requestStack->push($request);
$route_match = RouteMatch::createFromRequest($request); $route_match = RouteMatch::createFromRequest($request);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment