This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 203fe71b49 Migrate Google leveldb system tests to new design AIP-47
(#24255)
203fe71b49 is described below
commit 203fe71b49da760968c26752957f765c4649423b
Author: Chenglong Yan <[email protected]>
AuthorDate: Tue Jun 7 05:11:17 2022 +0800
Migrate Google leveldb system tests to new design AIP-47 (#24255)
related: #22447, #22430
---
.../leveldb/operators/test_leveldb_system.py | 48 ----------------------
1 file changed, 48 deletions(-)
diff --git a/tests/providers/google/leveldb/operators/test_leveldb_system.py
b/tests/providers/google/leveldb/operators/test_leveldb_system.py
deleted file mode 100644
index 4eebccbb19..0000000000
--- a/tests/providers/google/leveldb/operators/test_leveldb_system.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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.
-import os
-from contextlib import contextmanager
-
-import pytest
-
-from airflow.models import Connection
-from airflow.utils.process_utils import patch_environ
-from tests.test_utils.gcp_system_helpers import LEVELDB_DAG_FOLDER,
GoogleSystemTest
-
-CONNECTION_TYPE = os.environ.get('CONNECTION_TYPE', 'leveldb')
-LEVELDB_CONNECTION_ID = os.environ.get('AIRFLOW_CONN_LEVELDB_DEFAULT',
'leveldb_default')
-
-
-@contextmanager
-def provide_leveldb_connection():
- """Context manager that provides a temporary value of
AIRFLOW_CONN_LEVELDB_DEFAULT connection"""
- conn = Connection(conn_id=LEVELDB_CONNECTION_ID, conn_type=CONNECTION_TYPE)
- with patch_environ({f"AIRFLOW_CONN_{conn.conn_id.upper()}":
conn.get_uri()}):
- yield
-
-
[email protected]("google.leveldb")
-class LevelDBSystemTest(GoogleSystemTest):
- def setUp(self):
- super().setUp()
-
- @provide_leveldb_connection()
- def test_run_example_dag(self):
- self.run_dag('example_leveldb', LEVELDB_DAG_FOLDER)
-
- def tearDown(self):
- super().tearDown()