Mercurial > p > roundup > code
diff test/rest_common.py @ 6525:c505c774a94d
Mutiple changes to REST code.
Requesting an invalid attribut via rest/data/class/id/attrib used to
return a 405, it now returns a 400 and a better error message.
/rest/ response scans the registered endpoints rather than using a
hard coded description. So new endpoints added in interfaces.py are
listed.
Fix a number of Allow headers that were listing invalid methods. Also
when invalid method is used, report valid methods in response. Extract
methods from Route list.
Fix Access-Control-Allow-Methods. Add X-Requested-With to
Access-Control-Allow-Headers.
Add decorator openapi_doc to add openapi annotations for the rest
endpoints. Added a couple of examples. Returning this info to a
client is still a work in progress.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 07 Nov 2021 01:04:43 -0500 |
| parents | 1d6c986b3f72 |
| children | f8df7fed18f6 |
line wrap: on
line diff
--- a/test/rest_common.py Sun Nov 07 01:49:03 2021 -0400 +++ b/test/rest_common.py Sun Nov 07 01:04:43 2021 -0500 @@ -2063,16 +2063,16 @@ "default_version": 1, "links": [ { - "rel": "summary", - "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/summary" - }, - { "rel": "self", "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest" }, { "rel": "data", "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/data" + }, + { + "rel": "summary", + "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/summary" } ] }
