Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[airflow] Add misssing AIR302 attribute check #17115

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Lee-W
Copy link
Contributor

@Lee-W Lee-W commented Apr 1, 2025

Summary

attribute check was missing in the previous implementation

e.g.

from airflow.api.auth.backend import basic_auth

basic_auth.auth_current_user

This PR adds this kind of check.

Test Plan

The test case has been added to the button of the existing test fixtures, confirmed to be correct and later reorgnaized

Copy link
Contributor

github-actions bot commented Apr 1, 2025

ruff-ecosystem results

Linter (stable)

✅ ecosystem check detected no linter changes.

Linter (preview)

✅ ecosystem check detected no linter changes.

Copy link
Contributor

@sunank200 sunank200 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@Lee-W Lee-W force-pushed the add-more-AIR303-condition branch from 7aad00e to 189cf32 Compare April 2, 2025 10:01
@dhruvmanila dhruvmanila added rule Implementing or modifying a lint rule preview Related to preview mode features labels Apr 2, 2025
Comment on lines 873 to 892
AIR303.py:316:1: AIR303 Import path `airflow.api.auth.backend.basic_auth` is moved into `fab` provider in Airflow 3.0;
|
315 | # apache-airflow-providers-cncf-kubernetes
316 | ALL_NAMESPACES
315 | # check whether attribute access
316 | basic_auth.auth_current_user
| ^^^^^^^^^^ AIR303
317 |
318 | # apache-airflow-providers-cncf-kubernetes
|
= help: Install `apache-airflow-provider-fab>=1.0.0` and import from `airflow.providers.fab.auth_manager.api.auth.backend.basic_auth` instead.

AIR303.py:316:12: AIR303 Import path `airflow.api.auth.backend.basic_auth` is moved into `fab` provider in Airflow 3.0;
|
315 | # check whether attribute access
316 | basic_auth.auth_current_user
| ^^^^^^^^^^^^^^^^^ AIR303
317 |
318 | # apache-airflow-providers-cncf-kubernetes
|
= help: Install `apache-airflow-provider-fab>=1.0.0` and import from `airflow.providers.fab.auth_manager.api.auth.backend.basic_auth` instead.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems to be creating two diagnostics that are same for the two parts of the attribute node. Can you look into it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's expected for "airflow", "api", "auth", "backend", "basic_auth", ... ...basic_auth or anything under basic_auth

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to reduce this kind of confusion. We're also going to remove Replacement::ImportPathMoved and expand them to individual Replacement::ProviderName instead.

But I think the logic in this PR is still required

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I follow here. There are two duplicate diagnostics for separate symbol:

  • basic_auth
  • auth_current_user

They both say:

Import path `airflow.api.auth.backend.basic_auth` is moved into `fab` provider in Airflow 3.0;

But, we should avoid the duplicate diagnostic and only highlight it once.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think basic_auth was check when it is passed into as a Name and auth_current_user is checked when it's an attribute under basic_auth (because of ["airflow", "api", "auth", "backend", "basic_auth", ..])

The issue occurs because we implemented the path check only instead of checking the exact name. This is antoher issue (which will be addressed when we replace all the path check with exact name check)


This PR intends to solve the following issue. (I'll update the test fixture)

from airflow.operators import python

python.PythonOperator()

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand that part, but I think the bug related to duplicate diagnostic would still exists and we should address that. I'm not exactly sure how as I'd need to look at the code first.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just updated the test fixture to the issue we have.

Yep, we'll address that issue as well. but that would take sometime to replace Replacement::ImportPath as Replacement::Provider. @sunank200 and I already sync up and we're thinking of making them another PR. WDYT?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's also ok if we want it to be in this PR 🙂

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want to do a release this week and I'm worried that this might not be fixed until then. I'd prefer that we do it in this PR itself.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it. Sounds good

@Lee-W Lee-W force-pushed the add-more-AIR303-condition branch from 189cf32 to 5573369 Compare April 2, 2025 16:01
@Lee-W Lee-W force-pushed the add-more-AIR303-condition branch from 5573369 to ebd06bb Compare April 3, 2025 02:22
@Lee-W Lee-W marked this pull request as draft April 3, 2025 02:22
@Lee-W Lee-W changed the title [airflow] Add misssing AIR303 attribute check [airflow] Add misssing AIR302 attribute check Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
preview Related to preview mode features rule Implementing or modifying a lint rule
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants