mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-05 05:20:34 +00:00
345fa02fdc
When api/graph.{dot,gv} is requested the raw string for dot gets returned.
This allows client-side rendering rather than server-side. It also makes
the optional dependency on graphivz for dot unnecessary to use the graph
endpoint.
22 lines
747 B
Python
22 lines
747 B
Python
from api_lib import APITest
|
|
|
|
|
|
class GraphAPITest(APITest):
|
|
"""
|
|
GET /graph.:ext
|
|
"""
|
|
|
|
def check(self):
|
|
resp = self.get("/api/graph.png")
|
|
self.check_equal(resp.headers["Content-Type"], "image/png")
|
|
self.check_equal(resp.content[:4], '\x89PNG')
|
|
|
|
self.check_equal(self.post("/api/repos", json={"Name": "xyz", "Comment": "fun repo"}).status_code, 201)
|
|
resp = self.get("/api/graph.svg")
|
|
self.check_equal(resp.headers["Content-Type"], "image/svg+xml")
|
|
self.check_equal(resp.content[:4], '<?xm')
|
|
|
|
resp = self.get("/api/graph.dot")
|
|
self.check_equal(resp.headers["Content-Type"], "text/plain; charset=utf-8")
|
|
self.check_equal(resp.content[:13], 'digraph aptly')
|