-
Notifications
You must be signed in to change notification settings - Fork 14.9k
/
Copy pathconftest.py
141 lines (109 loc) · 4.41 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# 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.
#
# 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 __future__ import annotations
import functools
from typing import Any, Callable, TYPE_CHECKING
from unittest.mock import MagicMock, Mock, PropertyMock
from pytest import fixture # noqa: PT013
from tests.example_data.data_loading.pandas.pandas_data_loader import PandasDataLoader
from tests.example_data.data_loading.pandas.pands_data_loading_conf import (
PandasLoaderConfigurations,
)
from tests.example_data.data_loading.pandas.table_df_convertor import (
TableToDfConvertorImpl,
)
from tests.integration_tests.test_app import app
SUPPORT_DATETIME_TYPE = "support_datetime_type"
if TYPE_CHECKING:
from sqlalchemy.engine import Engine
from superset.connectors.sqla.models import Database
from tests.example_data.data_loading.base_data_loader import DataLoader
from tests.example_data.data_loading.pandas.pandas_data_loader import (
TableToDfConvertor,
)
pytest_plugins = "tests.fixtures"
PRESTO = "presto"
BACKEND_PROPERTY_VALUE = "sqlite"
@fixture(scope="session")
def example_db_provider() -> Callable[[], Database]:
def mock_provider() -> Mock:
mock = MagicMock()
type(mock).backend = PropertyMock(return_value=BACKEND_PROPERTY_VALUE)
return mock
return mock_provider
@fixture(scope="session")
def example_db_engine(example_db_provider: Callable[[], Database]) -> Engine:
with app.app_context():
with example_db_provider().get_sqla_engine() as engine:
return engine
@fixture(scope="session")
def pandas_loader_configuration(
support_datetime_type,
) -> PandasLoaderConfigurations:
return PandasLoaderConfigurations.make_from_dict(
{SUPPORT_DATETIME_TYPE: support_datetime_type}
)
@fixture(scope="session")
def support_datetime_type(example_db_provider: Callable[[], Database]) -> bool:
return example_db_provider().backend != PRESTO
@fixture(scope="session")
def table_to_df_convertor(
pandas_loader_configuration: PandasLoaderConfigurations,
) -> TableToDfConvertor:
return TableToDfConvertorImpl(
not pandas_loader_configuration.support_datetime_type,
pandas_loader_configuration.strftime,
)
@fixture(scope="session")
def data_loader(
example_db_engine: Engine,
pandas_loader_configuration: PandasLoaderConfigurations,
table_to_df_convertor: TableToDfConvertor,
) -> DataLoader:
return PandasDataLoader(
example_db_engine, pandas_loader_configuration, table_to_df_convertor
)
def with_config(override_config: dict[str, Any]):
"""
Use this decorator to mock specific config keys.
Usage:
class TestYourFeature(SupersetTestCase):
@with_config({"SOME_CONFIG": True})
def test_your_config(self):
self.assertEqual(curren_app.config["SOME_CONFIG"), True)
"""
def decorate(test_fn):
config_backup = {}
def wrapper(*args, **kwargs):
from flask import current_app
for key, value in override_config.items():
config_backup[key] = current_app.config[key]
current_app.config[key] = value
test_fn(*args, **kwargs)
for key, value in config_backup.items():
current_app.config[key] = value
return functools.update_wrapper(wrapper, test_fn)
return decorate