Mercurial > p > roundup > code
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 6524:f961dbbc3573 | 6525:c505c774a94d |
|---|---|
| 2061 1 | 2061 1 |
| 2062 ], | 2062 ], |
| 2063 "default_version": 1, | 2063 "default_version": 1, |
| 2064 "links": [ | 2064 "links": [ |
| 2065 { | 2065 { |
| 2066 "rel": "summary", | |
| 2067 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/summary" | |
| 2068 }, | |
| 2069 { | |
| 2070 "rel": "self", | 2066 "rel": "self", |
| 2071 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest" | 2067 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest" |
| 2072 }, | 2068 }, |
| 2073 { | 2069 { |
| 2074 "rel": "data", | 2070 "rel": "data", |
| 2075 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/data" | 2071 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/data" |
| 2072 }, | |
| 2073 { | |
| 2074 "rel": "summary", | |
| 2075 "uri": "http://tracker.example/cgi-bin/roundup.cgi/bugs/rest/summary" | |
| 2076 } | 2076 } |
| 2077 ] | 2077 ] |
| 2078 } | 2078 } |
| 2079 } | 2079 } |
| 2080 | 2080 |
