hanami/router

Make hanami-router compatible with Rack 2.0 only

jodosha opened this issue · 8 comments

Make hanami-router compatible with Rack 2.0 only

I found the problem to be this part:

request.env['SCRIPT_NAME'].must_equal script_name
request.env['SCRIPT_NAME'].must_be_kind_of(String)

request.env['PATH_INFO'].must_equal ''
request.env['PATH_INFO'].must_be_kind_of(String)

(https://github.com/hanami/router/blob/master/test/request_url_test.rb#L43)

With Rack 2.0.1 SCRIPT_NAME and PATH_INFO are swapped. Any hints how/why this happens?

@pascalbetz Please investigate, I don't know why.

Infos from gitter chat (thx @jodosha):

@pascalbetz @AlfonsoUceda This is the change that you're looking for https://github.com/rack/rack/blob/4b33af1c80c822cbcbb69113ff1e54f9454921c1/lib/rack/request.rb#L94 IIRC
Until Rack 1.6, when you did request.dup, the env of that request, was NOT duped.
They fixed it with that line above

After digging through http_router and rack and hanami-router

The Rack Request is duplicated in http_router in a dynamically generated method in Node::Path#to_code (https://github.com/joshbuddy/http_router/blob/master/lib/http_router/node/path.rb#L32)

There is a an open PR at http_router (joshbuddy/http_router#48) which would fix the problem.

  1. Wait until it gets merged
  2. Monkey Patch http_router
  3. Stick with rack 1.6
  4. Replace http_router

Given that 0. is unlikely to happen and there are plans to replace http_router sometimes I'd go for 1. Did I miss something?

@jodosha thx for feedback. Now that I think about there is also

  1. clone and release our own version of http_router