| # 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 import mock |
| |
| import pytest |
| from flask_babel import lazy_gettext as _ |
| |
| from superset.commands.chart.exceptions import ChartDataQueryFailedError |
| |
| |
| @mock.patch("superset.tasks.async_queries.security_manager") |
| @mock.patch("superset.tasks.async_queries.async_query_manager") |
| @mock.patch("superset.tasks.async_queries.ChartDataQueryContextSchema") |
| def test_load_chart_data_into_cache_with_error( |
| mock_query_context_schema_cls, mock_async_query_manager, mock_security_manager |
| ): |
| """Test that the task is gracefully marked failed in event of error""" |
| from superset.tasks.async_queries import load_chart_data_into_cache |
| |
| job_metadata = {"user_id": 1} |
| form_data = {} |
| err_message = "Something went wrong" |
| err = ChartDataQueryFailedError(_(err_message)) |
| |
| mock_user = mock.MagicMock() |
| mock_query_context_schema = mock.MagicMock() |
| |
| mock_security_manager.get_user_by_id.return_value = mock_user |
| mock_async_query_manager.STATUS_ERROR = "error" |
| mock_query_context_schema_cls.return_value = mock_query_context_schema |
| |
| mock_query_context_schema.load.side_effect = err |
| |
| with pytest.raises(ChartDataQueryFailedError): |
| load_chart_data_into_cache(job_metadata, form_data) |
| |
| expected_errors = [{"message": err_message}] |
| |
| mock_async_query_manager.update_job.assert_called_once_with( |
| job_metadata, "error", errors=expected_errors |
| ) |