forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Provide more inclusive error handling for saved queries (apache#…
- Loading branch information
1 parent
5c83e31
commit ea1518c
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# 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. | ||
from unittest.mock import MagicMock | ||
|
||
import pytest | ||
from flask_appbuilder import Model | ||
from jinja2.exceptions import TemplateError | ||
from pytest_mock import MockFixture | ||
|
||
from superset.errors import ErrorLevel, SupersetError, SupersetErrorType | ||
from superset.exceptions import SupersetSecurityException | ||
from superset.models.sql_lab import Query, SavedQuery, SqlTablesMixin | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"klass", | ||
[ | ||
Query, | ||
SavedQuery, | ||
], | ||
) | ||
@pytest.mark.parametrize( | ||
"exception", | ||
[ | ||
SupersetSecurityException( | ||
SupersetError( | ||
error_type=SupersetErrorType.QUERY_SECURITY_ACCESS_ERROR, | ||
message="", | ||
level=ErrorLevel.ERROR, | ||
) | ||
), | ||
TemplateError, | ||
], | ||
) | ||
def test_sql_tables_mixin_sql_tables_exception( | ||
klass: type[Model], | ||
exception: Exception, | ||
mocker: MockFixture, | ||
) -> None: | ||
mocker.patch( | ||
"superset.models.sql_lab.extract_tables_from_jinja_sql", | ||
side_effect=exception, | ||
) | ||
|
||
assert klass(sql="SELECT 1", database=MagicMock()).sql_tables == [] |