Files
redash/tests/handlers/test_embed.py
2023-07-11 19:13:54 +10:00

115 lines
4.3 KiB
Python

from redash.models import db
from tests import BaseTestCase
class TestUnembedables(BaseTestCase):
def test_not_embedable(self):
query = self.factory.create_query()
res = self.make_request("get", "/api/queries/{0}".format(query.id))
self.assertEqual(res.status_code, 200)
self.assertIn("frame-ancestors 'none'", res.headers["Content-Security-Policy"])
self.assertEqual(res.headers["X-Frame-Options"], "deny")
class TestEmbedVisualization(BaseTestCase):
def test_sucesss(self):
vis = self.factory.create_visualization()
vis.query_rel.latest_query_data = self.factory.create_query_result()
db.session.add(vis.query_rel)
res = self.make_request(
"get",
"/embed/query/{}/visualization/{}".format(vis.query_rel.id, vis.id),
is_json=False,
)
self.assertEqual(res.status_code, 200)
self.assertIn("frame-ancestors *", res.headers["Content-Security-Policy"])
self.assertNotIn("X-Frame-Options", res.headers)
# TODO: this should be applied to the new API endpoint
class TestPublicDashboard(BaseTestCase):
def test_success(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard)
res = self.make_request(
"get",
"/public/dashboards/{}".format(api_key.api_key),
user=False,
is_json=False,
)
self.assertEqual(res.status_code, 200)
self.assertIn("frame-ancestors *", res.headers["Content-Security-Policy"])
self.assertNotIn("X-Frame-Options", res.headers)
def test_works_for_logged_in_user(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard)
res = self.make_request("get", "/public/dashboards/{}".format(api_key.api_key), is_json=False)
self.assertEqual(res.status_code, 200)
def test_bad_token(self):
res = self.make_request("get", "/public/dashboards/bad-token", user=False, is_json=False)
self.assertEqual(res.status_code, 302)
def test_inactive_token(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard, active=False)
res = self.make_request(
"get",
"/public/dashboards/{}".format(api_key.api_key),
user=False,
is_json=False,
)
self.assertEqual(res.status_code, 302)
# Not relevant for now, as tokens in api_keys table are only created for dashboards. Once this changes, we should
# add this test.
# def test_token_doesnt_belong_to_dashboard(self):
# pass
class TestAPIPublicDashboard(BaseTestCase):
def test_success(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard)
res = self.make_request(
"get",
"/api/dashboards/public/{}".format(api_key.api_key),
user=False,
is_json=False,
)
self.assertEqual(res.status_code, 200)
self.assertIn("frame-ancestors *", res.headers["Content-Security-Policy"])
self.assertNotIn("X-Frame-Options", res.headers)
def test_works_for_logged_in_user(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard)
res = self.make_request("get", "/api/dashboards/public/{}".format(api_key.api_key), is_json=False)
self.assertEqual(res.status_code, 200)
def test_bad_token(self):
res = self.make_request("get", "/api/dashboards/public/bad-token", user=False, is_json=False)
self.assertEqual(res.status_code, 404)
def test_inactive_token(self):
dashboard = self.factory.create_dashboard()
api_key = self.factory.create_api_key(object=dashboard, active=False)
res = self.make_request(
"get",
"/api/dashboards/public/{}".format(api_key.api_key),
user=False,
is_json=False,
)
self.assertEqual(res.status_code, 404)
# Not relevant for now, as tokens in api_keys table are only created for dashboards. Once this changes, we should
# add this test.
# def test_token_doesnt_belong_to_dashboard(self):
# pass