Add test coverage to ensure KernelTestBase's simulated current Request has a hostname

Created on 14 January 2016, about 9 years ago
Updated 21 March 2023, about 2 years ago

Problem/Motivation

See #1494670: References to CSS, JS, and similar files should be root-relative URLs: avoids mixed content warnings & fewer bytes to send β†’ .

Proposed resolution

Fix it.

Remaining tasks

Review.

User interface changes

None.

API changes

None.

Data model changes

None.

πŸ“Œ Task
Status

Needs work

Version

10.1 ✨

Component
BaseΒ  β†’

Last updated about 5 hours ago

Created by

πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Moving to a minor as its been many years.

    As mentioned in #14 since the parent issue landed would it be worth adding this additional assertion or not needed?

  • πŸ‡³πŸ‡ΏNew Zealand quietone

    I don't see a bug here, changing to a task. The priority to set an issue to is defined on Issue Priority field β†’ (which does not refer to the number of years). As an example there is a Critical issue that is now 16 years old.

    A parent issue is not mentioned in #14. What is the parent issue being referred to here?

    This is retesting the patch on an unsupported version of Drupal instead of a supported version.

  • πŸ‡¬πŸ‡§United Kingdom catch
  • Status changed to Needs work about 2 years ago
  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    Arguably this code would be better in testSetUp() where we already check the path:

        $request = $this->container->get('request_stack')->getCurrentRequest();
        $this->assertNotEmpty($request);
        $this->assertEquals('/', $request->getPathInfo());
    
  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    I was trying to understand where this is actually set up. run-tests.sh explicitly sets it:

      $_SERVER['SERVER_NAME'] = 'localhost';
    

    but if I bypass this and run tests directly via PHPUnit, the test still passes. I think this is just because Symfony's Request::create() method does this:

            $server = array_replace([
                'SERVER_NAME' => 'localhost',
    

    I suppose this is still worth adding a test for if we have expectations on it elsewhere.

Production build 0.71.5 2024