|
5 | 5 | import uuid
|
6 | 6 | from contextlib import contextmanager
|
7 | 7 | from pathlib import Path
|
8 |
| -from typing import Any, Dict, Iterable, List, Tuple |
| 8 | +from typing import Any, Dict, Iterator, List, Tuple |
9 | 9 |
|
10 | 10 | import datahub.metadata.schema_classes as models
|
11 |
| -from pydantic import BaseModel |
12 | 11 | import pytest
|
| 12 | +import tenacity |
13 | 13 | from datahub.api.entities.dataset.dataset import Dataset
|
14 | 14 | from datahub.emitter.mce_builder import make_schema_field_urn
|
15 | 15 | from datahub.emitter.mcp import MetadataChangeProposalWrapper
|
|
19 | 19 | from datahub.ingestion.sink.file import FileSink, FileSinkConfig
|
20 | 20 | from datahub.utilities.urns.urn import Urn
|
21 | 21 | from jinja2 import Template
|
22 |
| -import tenacity |
23 |
| -from datahub_actions.plugin.action.propagation.docs.propagation_action import ( |
24 |
| - DocPropagationConfig, |
25 |
| -) |
26 |
| - |
| 22 | +from pydantic import BaseModel |
27 | 23 |
|
28 | 24 | from tests.utils import (
|
29 | 25 | delete_urns_from_file,
|
@@ -111,7 +107,7 @@ def action_env_vars(pytestconfig) -> ActionTestEnv:
|
111 | 107 | key, value = line.split("=", 1)
|
112 | 108 | env_vars[key] = value
|
113 | 109 |
|
114 |
| - return ActionTestEnv(**env_vars) |
| 110 | + return ActionTestEnv.parse_obj(env_vars) |
115 | 111 |
|
116 | 112 |
|
117 | 113 | @pytest.fixture(scope="function")
|
@@ -164,31 +160,6 @@ def test_resources_dir(root_dir):
|
164 | 160 | return Path(root_dir) / "tests" / "actions" / "doc_propagation" / "resources"
|
165 | 161 |
|
166 | 162 |
|
167 |
| -@pytest.fixture(scope="function") |
168 |
| -def ingest_cleanup_data_function(request, test_resources_dir, graph, test_id): |
169 |
| - @contextmanager |
170 |
| - def _ingest_cleanup_data(template_file="datasets_template.yaml"): |
171 |
| - new_file, filename = tempfile.mkstemp(suffix=f"_{test_id}.json") |
172 |
| - try: |
173 |
| - template_path = Path(test_resources_dir) / template_file |
174 |
| - all_urns = create_test_data(filename, template_path, test_id) |
175 |
| - print( |
176 |
| - f"Ingesting datasets test data for test_id: {test_id} using template: {template_file}" |
177 |
| - ) |
178 |
| - ingest_file_via_rest(filename) |
179 |
| - yield all_urns |
180 |
| - finally: |
181 |
| - if DELETE_AFTER_TEST: |
182 |
| - print(f"Removing test data for test_id: {test_id}") |
183 |
| - delete_urns_from_file(filename) |
184 |
| - for urn in all_urns: |
185 |
| - graph.delete_entity(urn, hard=True) |
186 |
| - wait_for_writes_to_sync() |
187 |
| - os.remove(filename) |
188 |
| - |
189 |
| - return _ingest_cleanup_data |
190 |
| - |
191 |
| - |
192 | 163 | @pytest.fixture(scope="function")
|
193 | 164 | def ingest_cleanup_data(ingest_cleanup_data_function):
|
194 | 165 | """
|
@@ -261,7 +232,7 @@ def large_fanout_graph_function(graph: DataHubGraph):
|
261 | 232 | @contextmanager
|
262 | 233 | def _large_fanout_graph(
|
263 | 234 | test_id: str, max_fanout: int
|
264 |
| - ) -> Iterable[Tuple[str, List[str]]]: |
| 235 | + ) -> Iterator[Tuple[str, List[str]]]: |
265 | 236 | max_index = max_fanout + 1
|
266 | 237 | all_urns = []
|
267 | 238 | dataset_base_name = f"large_fanout_dataset_{test_id}"
|
|
0 commit comments