cjstehno / ersatz

🤖 A simulated HTTP server for testing client code with configurable responses.
https://cjstehno.github.io/ersatz
Apache License 2.0
47 stars 5 forks source link

Unable to match requests with encoded chars in path #69

Closed cjstehno closed 7 years ago

cjstehno commented 7 years ago

Related to https://github.com/http-builder-ng/http-builder-ng/issues/162 found in HttpBuilder-NG the path matcher does not account for encoded parts of a path, such as:

/api/v4/projects/myteam%2Fmyrepo/repository/files/myfile.json

It will automatically decode it to:

/api/v4/projects/myteam/myrepo/repository/files/myfile.json

Figure out how to support these encoded paths.

cjstehno commented 7 years ago

Nevermind... this is not an issue.