ephraimbuddy commented on a change in pull request #16889:
URL: https://github.com/apache/airflow/pull/16889#discussion_r671841722



##########
File path: tests/conftest.py
##########
@@ -424,3 +429,54 @@ def app():
     from airflow.www import app
 
     return app.create_app(testing=True)
+
+
[email protected]()
+def clear_db():
+    def _clean_up():
+        db.clear_db_runs()
+        db.clear_db_dags()
+        db.clear_db_serialized_dags()
+        db.clear_db_jobs()
+        db.clear_db_task_fail()
+        db.clear_db_task_reschedule
+
+    _clean_up()
+    yield
+
+
[email protected]
+def dag_maker(request):
+
+    DEFAULT_DATE = timezone.datetime(2016, 1, 1)
+
+    class DagFactory:
+        def __enter__(self):
+            self.dag.__enter__()
+            return self.dag
+
+        def __exit__(self, type, value, traceback):
+            dag = self.dag
+            dag.__exit__(type, value, traceback)
+            if type is None:
+                dag.sync_to_db()
+                dag.clear()
+                self.dag_run = dag.create_dagrun(
+                    run_id="test",
+                    state=self.kwargs.get('state', State.RUNNING),
+                    execution_date=self.kwargs.get('execution_date', 
self.kwargs['start_date']),
+                    start_date=self.kwargs['start_date'],
+                )
+
+        def __call__(self, dag_id='test_dag', **kwargs):
+            self.kwargs = kwargs
+            if "start_date" not in kwargs:
+                if hasattr(request.module, 'DEFAULT_DATE'):
+                    kwargs['start_date'] = getattr(request.module, 
'DEFAULT_DATE')
+                else:
+                    kwargs['start_date'] = DEFAULT_DATE
+            kwargs = {k: v for k, v in kwargs.items() if k not in ['state', 
'execution_date', 'run_type']}
+            self.dag = DAG(dag_id, **kwargs)
+            return self
+
+    return DagFactory()

Review comment:
       It turns out that the current code is good as it is in terms of being 
fast, however, I was not able to get it to work the way you suggested. 
   Since we are using it as a context manager so that we can define tasks under 
dag and create dag_runs on exit, it makes sense to me. What do you think?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to