Files
superset2/tests/integration_tests/base_api_tests.py
T

276 lines
10 KiB
Python

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""Unit tests for Superset"""
from pathlib import Path
from unittest.mock import patch
import rison
from flask import current_app
from superset import db
from superset.subjects.models import Subject
from superset.utils import json
from tests.integration_tests.base_tests import SupersetTestCase
from tests.integration_tests.constants import ADMIN_USERNAME
class TestOpenApiSpec(SupersetTestCase):
def test_open_api_spec(self):
"""
API: Test validate open api spec
"""
from openapi_spec_validator import validate
self.login(ADMIN_USERNAME)
uri = "api/v1/_openapi"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
validate(response)
def test_dashboard_list_uses_generated_response_schema(self):
"""Keep the generated dashboard list contract aligned with published docs.
If an intentional list schema change breaks this test, regenerate
``docs/static/resources/openapi.json`` with ``superset update-api-docs``
under the production-default configuration, then review the focused
dashboard diff.
"""
self.login(ADMIN_USERNAME)
rv = self.client.get("api/v1/_openapi")
assert rv.status_code == 200
generated_spec = json.loads(rv.data.decode("utf-8"))
published_spec_path = (
Path(__file__).parents[2] / "docs" / "static" / "resources" / "openapi.json"
)
published_spec = json.loads(published_spec_path.read_text(encoding="utf-8"))
generated_result_items = generated_spec["paths"]["/api/v1/dashboard/"]["get"][
"responses"
]["200"]["content"]["application/json"]["schema"]["properties"]["result"][
"items"
]
published_result_items = published_spec["paths"]["/api/v1/dashboard/"]["get"][
"responses"
]["200"]["content"]["application/json"]["schema"]["properties"]["result"][
"items"
]
assert (
generated_result_items
== published_result_items
== {"$ref": "#/components/schemas/DashboardRestApi.get_list"}
)
schema_prefix = "DashboardRestApi.get_list"
generated_schemas = {
name: schema
for name, schema in generated_spec["components"]["schemas"].items()
if name == schema_prefix or name.startswith(f"{schema_prefix}.")
}
published_schemas = {
name: schema
for name, schema in published_spec["components"]["schemas"].items()
if name == schema_prefix or name.startswith(f"{schema_prefix}.")
}
assert generated_schemas == published_schemas, (
"Dashboard list OpenAPI components changed; regenerate the published spec"
)
def test_info_endpoint(self):
"""
API: Test info endpoint
"""
self.login(ADMIN_USERNAME)
uri = "api/v1/chart/_info"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
# Must have add_columns, edit_columns, filters, permissions
assert "add_columns" in response
assert "edit_columns" in response
assert "filters" in response
assert "permissions" in response
expected_permissions = ["can_read", "can_write"]
for perm in expected_permissions:
assert perm in response["permissions"]
# Verify no unexpected top-level keys beyond the known set
known_keys = {
"add_columns",
"add_title",
"edit_columns",
"edit_title",
"filters",
"permissions",
}
assert set(response.keys()) <= known_keys
class ApiEditorsTestCaseMixin:
"""Implements shared tests for the editors related field endpoint."""
resource_name: str = ""
subject_types_config_key: str = ""
def get_expected_related_editor_subjects(self) -> list[Subject]:
"""
Return the subjects expected in the default editors picker.
Related editors are constrained by the same Subject type config used by
the API. Entity-specific settings override the global default.
"""
allowed_types = (
current_app.config.get(self.subject_types_config_key)
if self.subject_types_config_key
else None
)
if allowed_types is None:
allowed_types = current_app.config.get("SUBJECTS_RELATED_TYPES")
query = db.session.query(Subject)
if allowed_types is not None:
query = query.filter(Subject.type.in_(allowed_types))
return query.all()
def test_get_related_editors(self):
"""
API: Test get related editors
"""
self.login(ADMIN_USERNAME)
uri = f"api/v1/{self.resource_name}/related/editors"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
subjects = self.get_expected_related_editor_subjects()
assert response["count"] == len(subjects)
assert len(response["result"]) == len(subjects)
def test_get_related_editors_paginated(self):
"""
API: Test get related editors with pagination
"""
self.login(ADMIN_USERNAME)
page_size = 1
argument = {"page_size": page_size}
uri = f"api/v1/{self.resource_name}/related/editors?q={rison.dumps(argument)}"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
subjects = self.get_expected_related_editor_subjects()
assert response["count"] == len(subjects)
assert len(response["result"]) == min(page_size, len(subjects))
def test_get_ids_related_editors_paginated(self):
"""
API: Test get related editors with pagination and include_ids returns 422
"""
self.login(ADMIN_USERNAME)
argument = {"page": 1, "page_size": 1, "include_ids": [2]}
uri = f"api/v1/{self.resource_name}/related/editors?q={rison.dumps(argument)}"
rv = self.client.get(uri)
assert rv.status_code == 422
def test_get_filter_related_editors(self):
"""
API: Test get filter related editors
"""
self.login(ADMIN_USERNAME)
argument = {"filter": "gamma"}
uri = f"api/v1/{self.resource_name}/related/editors?q={rison.dumps(argument)}"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert response["count"] > 0
for result in response["result"]:
assert "gamma" in result["text"].lower()
def test_get_base_filter_related_editors(self):
"""
API: Test get related editors endpoint returns 200
"""
self.login(ADMIN_USERNAME)
uri = f"api/v1/{self.resource_name}/related/editors"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert response["count"] > 0
@patch(
"superset.security.SupersetSecurityManager.get_exclude_users_from_lists",
return_value=["gamma"],
)
def test_get_base_filter_related_editors_on_sm(
self, mock_get_exclude_users_from_list
):
"""
API: Test get related editors endpoint returns 200
"""
self.login(ADMIN_USERNAME)
uri = f"api/v1/{self.resource_name}/related/editors"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert response["count"] > 0
def test_get_ids_related_editors(self):
"""
API: Test get related editors with filter and include_ids
"""
self.login(ADMIN_USERNAME)
# Get a subject to use as include_id
subject = db.session.query(Subject).first()
argument = {"filter": "", "include_ids": [subject.id]}
uri = f"api/v1/{self.resource_name}/related/editors?q={rison.dumps(argument)}"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert response["count"] > 0
def test_get_repeated_ids_related_editors(self):
"""
API: Test get related editors with repeated include_ids
"""
self.login(ADMIN_USERNAME)
subjects = db.session.query(Subject).limit(2).all()
argument = {"filter": "", "include_ids": [s.id for s in subjects]}
uri = f"api/v1/{self.resource_name}/related/editors?q={rison.dumps(argument)}"
rv = self.client.get(uri)
assert rv.status_code == 200
response = json.loads(rv.data.decode("utf-8"))
assert response["count"] > 0
def test_get_disallowed_related_field_logs_warning(self):
"""
API: Test disallowed related field returns 404 and logs the field.
"""
self.login(ADMIN_USERNAME)
uri = f"api/v1/{self.resource_name}/related/not_allowed"
with patch("superset.views.base_api.logger") as mock_logger:
rv = self.client.get(uri)
assert rv.status_code == 404
# A disallowed related field is recorded as a security log event,
# including the rejected column name, in addition to the 404.
mock_logger.warning.assert_called_once()
assert "column=not_allowed" in (
mock_logger.warning.call_args.args[0]
% mock_logger.warning.call_args.args[1:]
)