forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: catch some potential errors on dual write (apache#20351)
* catch some potential errors on dual write * fix test for sqlite
- Loading branch information
Showing
5 changed files
with
163 additions
and
17 deletions.
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
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,69 @@ | ||
# 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 sqlalchemy.orm.exc import NoResultFound | ||
|
||
from superset.connectors.sqla.models import SqlaTable, TableColumn | ||
from superset.extensions import db | ||
from tests.integration_tests.base_tests import SupersetTestCase | ||
from tests.integration_tests.fixtures.datasource import load_dataset_with_columns | ||
|
||
|
||
class SqlaTableModelTest(SupersetTestCase): | ||
@pytest.mark.usefixtures("load_dataset_with_columns") | ||
def test_dual_update_column(self) -> None: | ||
""" | ||
Test that when updating a sqla ``TableColumn`` | ||
That the shadow ``Column`` is also updated | ||
""" | ||
dataset = db.session.query(SqlaTable).filter_by(table_name="students").first() | ||
column = dataset.columns[0] | ||
column_name = column.column_name | ||
column.column_name = "new_column_name" | ||
SqlaTable.update_column(None, None, target=column) | ||
|
||
# refetch | ||
dataset = db.session.query(SqlaTable).filter_by(id=dataset.id).one() | ||
assert dataset.columns[0].column_name == "new_column_name" | ||
|
||
# reset | ||
column.column_name = column_name | ||
SqlaTable.update_column(None, None, target=column) | ||
|
||
@pytest.mark.usefixtures("load_dataset_with_columns") | ||
@mock.patch("superset.columns.models.Column") | ||
def test_dual_update_column_not_found(self, column_mock) -> None: | ||
""" | ||
Test that when updating a sqla ``TableColumn`` | ||
That the shadow ``Column`` is also updated | ||
""" | ||
dataset = db.session.query(SqlaTable).filter_by(table_name="students").first() | ||
column = dataset.columns[0] | ||
column_uuid = column.uuid | ||
with mock.patch("sqlalchemy.orm.query.Query.one", side_effect=NoResultFound): | ||
SqlaTable.update_column(None, None, target=column) | ||
|
||
# refetch | ||
dataset = db.session.query(SqlaTable).filter_by(id=dataset.id).one() | ||
# it should create a new uuid | ||
assert dataset.columns[0].uuid != column_uuid | ||
|
||
# reset | ||
column.uuid = column_uuid | ||
SqlaTable.update_column(None, None, target=column) |
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