Skip to content

Commit

Permalink
Custom specs_route example (#117)
Browse files Browse the repository at this point in the history
* Remove hardcoded specs_route from conftest

* Custom specs_route example
  • Loading branch information
Rodrigo Martins de Oliveira authored and rochacbruno committed Jun 22, 2017
1 parent 83942f5 commit c897a8a
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions examples/specs_route_example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
"""
In this example a custom specs_route is set.
"""
from flask import Flask
try:
from http import HTTPStatus
except ImportError:
import httplib as HTTPStatus
from flasgger import Swagger

swagger_config = {
"headers": [
],
"specs": [
{
"endpoint": 'specifications',
"route": '/specifications.json',
"rule_filter": lambda rule: True, # all in
"model_filter": lambda tag: True, # all in
}
],
"static_url_path": "/flasgger_static",
# "static_folder": "static", # must be set by user
"specs_route": "/documentation/swagger/"
}

app = Flask(__name__)
swag = Swagger(app, config=swagger_config)


def test_swag(client, specs_data):
"""
This test is runs automatically in Travis CI
:param client: Flask app test client
:param specs_data: {'url': {swag_specs}} for every spec in app
"""
assert client.get('/documentation/swagger/').status_code == HTTPStatus.OK
assert specs_data.get('/specifications.json') is not None


if __name__ == '__main__':
app.run(debug=True)

0 comments on commit c897a8a

Please sign in to comment.