Add logic to show the platform info banner even in case of status=200 and the API response contains reason in case of Hybrid platform. (#23614)

This commit is contained in:
Aniket Katkar 2025-09-30 08:07:15 +05:30 committed by GitHub
parent bb1395fc72
commit cf62abe256
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 116 additions and 3 deletions

View File

@ -11,6 +11,7 @@
* limitations under the License.
*/
import { render, screen } from '@testing-library/react';
import { AIRFLOW_HYBRID } from '../../../constants/constants';
import { useAirflowStatus } from '../../../context/AirflowStatusProvider/AirflowStatusProvider';
import AirflowMessageBanner from './AirflowMessageBanner';
@ -20,6 +21,8 @@ jest.mock(
useAirflowStatus: jest.fn().mockImplementation(() => ({
reason: 'reason message',
isAirflowAvailable: false,
isFetchingStatus: false,
platform: 'unknown',
})),
})
);
@ -31,10 +34,53 @@ describe('Test Airflow Message Banner', () => {
expect(screen.getByTestId('no-airflow-placeholder')).toBeInTheDocument();
});
it('Should not render the banner if airflow is available', () => {
it('Should not render the banner if airflow is available and platform is not hybrid', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: 'reason message',
isAirflowAvailable: true,
isFetchingStatus: false,
platform: 'unknown',
}));
render(<AirflowMessageBanner />);
expect(
screen.queryByTestId('no-airflow-placeholder')
).not.toBeInTheDocument();
});
describe('Hybrid Runner Scenarios', () => {
it('Should render the banner for hybrid runner even when platform is available (status 200)', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: 'Hybrid runner is configured correctly',
isAirflowAvailable: true,
isFetchingStatus: false,
platform: AIRFLOW_HYBRID,
}));
render(<AirflowMessageBanner />);
expect(screen.getByTestId('no-airflow-placeholder')).toBeInTheDocument();
expect(screen.getByTestId('viewer-container')).toBeInTheDocument();
});
it('Should render the banner for hybrid runner when platform is not available', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: 'Hybrid runner configuration error',
isAirflowAvailable: false,
isFetchingStatus: false,
platform: AIRFLOW_HYBRID,
}));
render(<AirflowMessageBanner />);
expect(screen.getByTestId('no-airflow-placeholder')).toBeInTheDocument();
expect(screen.getByTestId('viewer-container')).toBeInTheDocument();
});
it('Should not render the banner for hybrid runner if reason is empty', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: '',
isAirflowAvailable: true,
isFetchingStatus: false,
platform: AIRFLOW_HYBRID,
}));
render(<AirflowMessageBanner />);
@ -43,3 +89,62 @@ describe('Test Airflow Message Banner', () => {
).not.toBeInTheDocument();
});
});
describe('Common Scenarios', () => {
it('Should not render the banner if fetching status', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: 'reason message',
isAirflowAvailable: false,
isFetchingStatus: true,
platform: 'unknown',
}));
render(<AirflowMessageBanner />);
expect(
screen.queryByTestId('no-airflow-placeholder')
).not.toBeInTheDocument();
});
it('Should not render the banner if reason is empty', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: '',
isAirflowAvailable: false,
isFetchingStatus: false,
platform: 'unknown',
}));
render(<AirflowMessageBanner />);
expect(
screen.queryByTestId('no-airflow-placeholder')
).not.toBeInTheDocument();
});
it('Should not render the banner if reason is null', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: null,
isAirflowAvailable: false,
isFetchingStatus: false,
platform: 'unknown',
}));
render(<AirflowMessageBanner />);
expect(
screen.queryByTestId('no-airflow-placeholder')
).not.toBeInTheDocument();
});
it('Should render the banner if platform is not available and reason is not empty', () => {
(useAirflowStatus as jest.Mock).mockImplementationOnce(() => ({
reason: 'Some error occurred',
isAirflowAvailable: false,
isFetchingStatus: false,
platform: 'unknown',
}));
render(<AirflowMessageBanner />);
expect(
screen.queryByTestId('no-airflow-placeholder')
).toBeInTheDocument();
});
});
});

View File

@ -15,14 +15,22 @@ import classNames from 'classnames';
import { isEmpty } from 'lodash';
import { FC } from 'react';
import { ReactComponent as IconRetry } from '../../../assets/svg/ic-retry-icon.svg';
import { AIRFLOW_HYBRID } from '../../../constants/constants';
import { useAirflowStatus } from '../../../context/AirflowStatusProvider/AirflowStatusProvider';
import RichTextEditorPreviewerV1 from '../RichTextEditor/RichTextEditorPreviewerV1';
import './airflow-message-banner.less';
const AirflowMessageBanner: FC<SpaceProps> = ({ className }) => {
const { reason, isAirflowAvailable, isFetchingStatus } = useAirflowStatus();
const { reason, isAirflowAvailable, isFetchingStatus, platform } =
useAirflowStatus();
if (isAirflowAvailable || isFetchingStatus || isEmpty(reason)) {
if (isFetchingStatus || isEmpty(reason)) {
return null;
}
// For hybrid runner, always show the banner even if status is 200
// For other platforms, only show when Airflow is not available
if (platform !== AIRFLOW_HYBRID && isAirflowAvailable) {
return null;
}