Skip to content

Commit

Permalink
Add LegacyUIDeprecated for upgrade_check (apache#11279)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelpierre authored Oct 6, 2020
1 parent 7b99d16 commit 25b6cb0
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
36 changes: 36 additions & 0 deletions airflow/upgrade/rules/legacy_ui_deprecated.py
Original file line number Diff line number Diff line change
@@ -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."
)
46 changes: 46 additions & 0 deletions tests/upgrade/rules/test_legacy_ui_deprecated.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 25b6cb0

Please sign in to comment.