1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
No description
Find a file
Eduardo Gurgel 84fa15df9b Bump version
[ci skip]
2018-01-07 16:33:45 +13:00
lib Fix deprecation warnings for String.strip and Integer.to_char_list. 2017-11-15 11:07:19 +03:00
priv Add /response-headers endpoint 2015-04-27 20:08:39 +02:00
test Fixing /ip to use client's ip when available 2017-05-20 16:34:31 -03:00
.gitignore Add /doc to .gitignore 2016-09-09 09:19:05 +12:00
.travis.yml fix elixir 1.4 warnings, update deps 2017-03-14 10:13:08 +08:00
LICENSE Add MIT License 2014-08-03 16:13:01 +12:00
mix.exs Bump version 2018-01-07 16:33:45 +13:00
mix.lock Update hex info 2017-05-21 20:48:15 +12:00
README.md Update README.md 2016-06-27 08:48:42 +12:00

HTTParrot Build Status

HTTP server built on top of Cowboy using (mostly) cowboy_rest handlers to serve useful endpoints for testing purposes. Its goal is to be as close as possible to HTTPBin.

Endpoints

  • / This page.
  • /ip Returns Origin IP.
  • /user-agent Returns user-agent.
  • /headers Returns header dict.
  • /get Returns GET data.
  • /post Returns POST data.
  • /put Returns PUT data.
  • /patch Returns PATCH data.
  • /delete Returns DELETE data
  • /gzip Returns gzip-encoded data.
  • /status/:code Returns given HTTP Status code.
  • /response-headers?key=val Returns given response headers.
  • /redirect/:n 301 Redirects n times.
  • /redirect-to?url=foo 301 Redirects to the foo URL.
  • /relative-redirect/:n 301 Relative redirects n times.
  • /cookies Returns cookie data.
  • /cookies/set?name=value Sets one or more simple cookies.
  • /cookies/set/name/value Sets one cookie .
  • /cookies/delete?name Deletes one or more simple cookies.
  • /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
  • /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • /stream/:n Streams n100 lines.
  • /delay/:n Delays responding for n10 seconds.
  • /html Renders an HTML Page.
  • /robots.txt Returns some robots.txt rules.
  • /deny Denied by robots.txt file.
  • /cache Returns 200 unless an If-Modified-Since header is provided, when it returns a 304 Not Modified.
  • /base64/:value Decodes base64url-encoded string.
  • /image Return an image based on Accept header.
  • /websocket Echo message received through websocket

TODO

  • /deflate Returns deflate-encoded data.
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.

License

Copyright 2013-2016 Eduardo Gurgel <eduardo@gurgel.me>

This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the LICENSE file for more details.