Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

psgi env: fix double encoding of path parts #2239

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

sparrow2009
Copy link

Fix double encoding of path parts when parsing a PSGI env with a SCRIPT_NAME set.

Fix double encoding of path parts when parsing a PSGI env with a SCRIPT_NAME set.
@@ -197,6 +197,8 @@ sub _parse_env {
$base->path->parse($value =~ m!/$! ? $value : "$value/");

# Remove SCRIPT_NAME prefix if necessary
# Make sure $path is decoded and unescaped as expected by to_string
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reads like you're putting things that should be in a nice detailed commit message into comments.

# test $env is a stripped down version of the result of:
# use HTTP::Request::Common 'GET';
# use HTTP::Message::PSGI 'req_to_psgi';
# $env = req_to_psgi( GET( 'http://www.example.com'.$script_name.$path ), SCRIPT_NAME => $script_name );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, this is ok in a commit message, but serves no real purpose in a test.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants