You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by tu...@apache.org on 2020/10/06 07:41:05 UTC

[airflow] branch v1-10-test updated: Add LegacyUIDeprecated for upgrade_check (#11279)

This is an automated email from the ASF dual-hosted git repository.

turbaszek pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new 25b6cb0  Add LegacyUIDeprecated for upgrade_check (#11279)
25b6cb0 is described below

commit 25b6cb07c8706437f18baefc87556837d34e105a
Author: Rafael Pierre <ra...@gmail.com>
AuthorDate: Tue Oct 6 09:40:27 2020 +0200

    Add LegacyUIDeprecated for upgrade_check (#11279)
---
 airflow/upgrade/rules/legacy_ui_deprecated.py    | 36 +++++++++++++++++++
 tests/upgrade/rules/test_legacy_ui_deprecated.py | 46 ++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/airflow/upgrade/rules/legacy_ui_deprecated.py b/airflow/upgrade/rules/legacy_ui_deprecated.py
new file mode 100644
index 0000000..9570af7
--- /dev/null
+++ b/airflow/upgrade/rules/legacy_ui_deprecated.py
@@ -0,0 +1,36 @@
+# 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.
+
+from __future__ import absolute_import
+
+from airflow.configuration import conf
+from airflow.upgrade.rules.base_rule import BaseRule
+
+
+class LegacyUIDeprecated(BaseRule):
+    title = "Legacy UI is deprecated by default"
+
+    description = "Legacy UI is deprecated. FAB RBAC is enabled by default in order to increase security."
+
+    def check(self):
+        if conf.has_option("webserver", "rbac"):
+            rbac = conf.get("webserver", "rbac")
+            if rbac == "false":
+                return (
+                    "rbac in airflow.cfg must be explicitly set empty as"
+                    " RBAC mechanism is enabled by default."
+                )
diff --git a/tests/upgrade/rules/test_legacy_ui_deprecated.py b/tests/upgrade/rules/test_legacy_ui_deprecated.py
new file mode 100644
index 0000000..adbbe8f
--- /dev/null
+++ b/tests/upgrade/rules/test_legacy_ui_deprecated.py
@@ -0,0 +1,46 @@
+# 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.
+from unittest import TestCase
+
+from airflow.upgrade.rules.legacy_ui_deprecated import LegacyUIDeprecated
+from tests.test_utils.config import conf_vars
+
+
+class TestLegacyUIDeprecated(TestCase):
+    @conf_vars({("webserver", "rbac"): "false"})
+    def test_invalid_check(self):
+        rule = LegacyUIDeprecated()
+
+        assert isinstance(rule.description, str)
+        assert isinstance(rule.title, str)
+
+        msg = (
+            "rbac in airflow.cfg must be explicitly set empty as"
+            " RBAC mechanism is enabled by default."
+        )
+        response = rule.check()
+        assert response == msg
+
+    @conf_vars({("webserver", "rbac"): ""})
+    def test_valid_check(self):
+        rule = LegacyUIDeprecated()
+
+        assert isinstance(rule.description, str)
+        assert isinstance(rule.title, str)
+
+        response = rule.check()
+        assert response is None