You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/04/03 08:23:42 UTC

[GitHub] [airflow] rabsr commented on a change in pull request #8085: Add support for custom task runner

rabsr commented on a change in pull request #8085: Add support for custom task runner
URL: https://github.com/apache/airflow/pull/8085#discussion_r402789447
 
 

 ##########
 File path: tests/task/task_runner/test_task_runner.py
 ##########
 @@ -0,0 +1,52 @@
+# 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 unittest
+from unittest import mock
+
+from airflow.task.task_runner import get_task_runner
+
+custom_task_runner = mock.MagicMock()
+
+
+class GetTaskRunner(unittest.TestCase):
+
+    @mock.patch(
+        'airflow.task.task_runner.base_task_runner.subprocess'
+    )
+    @mock.patch('airflow.task.task_runner._TASK_RUNNER_NAME', "StandardTaskRunner")
+    def test_should_support_core_task_runner(self, mock_subprocess):
+        local_task_job = mock.MagicMock(
+            **{'task_instance.get_template_context.return_value': {"ti": mock.MagicMock()}}
+        )
+        task_runner = get_task_runner(local_task_job)
+
+        self.assertEqual("StandardTaskRunner", task_runner.__class__.__name__)
+
+    @mock.patch(
+        'airflow.task.task_runner._TASK_RUNNER_NAME',
+        "tests.task.task_runner.test_task_runner.custom_task_runner"
+    )
+    def test_should_support_custom_task_runner(self):
+        local_task_job = mock.MagicMock(
+            **{'task_instance.get_template_context.return_value': {"ti": mock.MagicMock()}}
+        )
+        custom_task_runner.reset_mock()
+
+        task_runner = get_task_runner(local_task_job)
 
 Review comment:
   Unused variable 'task_runner'

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services