vincbeck commented on code in PR #69106:
URL: https://github.com/apache/airflow/pull/69106#discussion_r3491891323


##########
airflow-core/src/airflow/security/permissions.py:
##########
@@ -106,8 +106,10 @@ class ResourceDetails(TypedDict):
 
 def resource_name(dag_id: str, resource: str) -> str:
     """Return the resource name for a DAG id."""
-    if dag_id in RESOURCE_DETAILS_MAP.keys():
-        return dag_id
+    # NB: do not short-circuit when ``dag_id`` equals a reserved resource name

Review Comment:
   I dont know if adding a comment makes sense here. You basically explain 
something that has been removed, it can be confusing. Contributor will think 
this comment is related to the next line but in fact this is related to the 
line you just removed. I would just remove the code



##########
airflow-core/tests/unit/security/test_permissions.py:
##########
@@ -0,0 +1,35 @@
+#
+# 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 annotations
+
+from airflow.security import permissions
+
+
+def test_resource_name_does_not_collide_with_reserved_resource_names():

Review Comment:
   To me, we should not have tests. Again, we are removing something that was 
*stupid*



-- 
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