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

Improve error states for Upgrade Assistant deprecation issues #112457

Merged
merged 8 commits into from
Sep 21, 2021
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,10 @@ describe('Error handling', () => {
testBed = await setupElasticsearchPage({ isReadOnlyMode: false });
});

const { component, exists, find } = testBed;

const { component, find } = testBed;
component.update();

expect(exists('permissionsError')).toBe(true);
expect(find('permissionsError').text()).toContain(
'You are not authorized to view Elasticsearch deprecations.'
expect(find('deprecationsPageLoadingError').text()).toContain(
'You are not authorized to view Elasticsearch deprecation issues.'
);
});

Expand All @@ -59,12 +56,11 @@ describe('Error handling', () => {
testBed = await setupElasticsearchPage({ isReadOnlyMode: false });
});

const { component, exists, find } = testBed;

const { component, find } = testBed;
component.update();

expect(exists('upgradedCallout')).toBe(true);
expect(find('upgradedCallout').text()).toContain('All Elasticsearch nodes have been upgraded.');
expect(find('deprecationsPageLoadingError').text()).toContain(
'All Elasticsearch nodes have been upgraded.'
);
});

it('shows partially upgrade error when nodes are running different versions', async () => {
Expand All @@ -83,12 +79,9 @@ describe('Error handling', () => {
testBed = await setupElasticsearchPage({ isReadOnlyMode: false });
});

const { component, exists, find } = testBed;

const { component, find } = testBed;
component.update();

expect(exists('partiallyUpgradedWarning')).toBe(true);
expect(find('partiallyUpgradedWarning').text()).toContain(
expect(find('deprecationsPageLoadingError').text()).toContain(
'Upgrade Kibana to the same version as your Elasticsearch cluster. One or more nodes in the cluster is running a different version than Kibana.'
);
});
Expand All @@ -106,11 +99,10 @@ describe('Error handling', () => {
testBed = await setupElasticsearchPage({ isReadOnlyMode: false });
});

const { component, exists, find } = testBed;

const { component, find } = testBed;
component.update();

expect(exists('requestError')).toBe(true);
expect(find('requestError').text()).toContain('Could not retrieve Elasticsearch deprecations.');
expect(find('deprecationsPageLoadingError').text()).toContain(
'Could not retrieve Elasticsearch deprecation issues.'
);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,9 @@ describe('Error handling', () => {
});
});

const { component, exists, find } = testBed;

const { component, find } = testBed;
component.update();

expect(exists('kibanaRequestError')).toBe(true);
expect(find('kibanaRequestError').text()).toContain(
expect(find('deprecationsPageLoadingError').text()).toContain(
'Could not retrieve Kibana deprecation issues'
);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,11 @@ describe('Overview - Fix deprecation issues step - Elasticsearch deprecations',
testBed = await setupOverviewPage();
});

const { component, exists } = testBed;
const { component, find } = testBed;
component.update();
expect(exists('esRequestErrorIconTip')).toBe(true);
expect(find('loadingIssuesError').text()).toBe(
'Could not retrieve Elasticsearch deprecation issues.'
);
});

test('handles unauthorized error', async () => {
Expand All @@ -136,9 +138,11 @@ describe('Overview - Fix deprecation issues step - Elasticsearch deprecations',
testBed = await setupOverviewPage();
});

const { component, exists } = testBed;
const { component, find } = testBed;
component.update();
expect(exists('unauthorizedErrorIconTip')).toBe(true);
expect(find('loadingIssuesError').text()).toBe(
'You are not authorized to view Elasticsearch deprecation issues.'
);
});

test('handles partially upgraded error', async () => {
Expand All @@ -157,9 +161,11 @@ describe('Overview - Fix deprecation issues step - Elasticsearch deprecations',
testBed = await setupOverviewPage({ isReadOnlyMode: false });
});

const { component, exists } = testBed;
const { component, find } = testBed;
component.update();
expect(exists('partiallyUpgradedErrorIconTip')).toBe(true);
expect(find('loadingIssuesError').text()).toBe(
'Upgrade Kibana to the same version as your Elasticsearch cluster. One or more nodes in the cluster is running a different version than Kibana.'
);
});

test('handles upgrade error', async () => {
Expand All @@ -178,9 +184,9 @@ describe('Overview - Fix deprecation issues step - Elasticsearch deprecations',
testBed = await setupOverviewPage({ isReadOnlyMode: false });
});

const { component, exists } = testBed;
const { component, find } = testBed;
component.update();
expect(exists('upgradedErrorIconTip')).toBe(true);
expect(find('loadingIssuesError').text()).toBe('All Elasticsearch nodes have been upgraded.');
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@ describe('Overview - Fix deprecation issues step - Kibana deprecations', () => {
});
});

const { component, exists } = testBed;
const { component, find } = testBed;
component.update();
expect(exists('kibanaRequestErrorIconTip')).toBe(true);
expect(find('loadingIssuesError').text()).toBe(
'Could not retrieve Kibana deprecation issues.'
);
});
});
});
2 changes: 2 additions & 0 deletions x-pack/plugins/upgrade_assistant/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import {
} from '@elastic/elasticsearch/api/types';
import { SavedObject, SavedObjectAttributes } from 'src/core/public';

export type DeprecationSource = 'Kibana' | 'Elasticsearch';

export enum ReindexStep {
// Enum values are spaced out by 10 to give us room to insert steps in between.
created = 0,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import { i18n } from '@kbn/i18n';
import { EnrichedDeprecationInfo } from '../../../../common/types';
import { SectionLoading } from '../../../shared_imports';
import { useAppContext } from '../../app_context';
import { getEsDeprecationError } from '../../lib/get_es_deprecation_error';
import { DeprecationsPageLoadingError, NoDeprecationsPrompt, DeprecationCount } from '../shared';
import { EsDeprecationsTable } from './es_deprecations_table';
import { EsDeprecationErrors } from './es_deprecation_errors';
import { NoDeprecationsPrompt, DeprecationCount } from '../shared';

const getDeprecationCountByLevel = (deprecations: EnrichedDeprecationInfo[]) => {
const criticalDeprecations: EnrichedDeprecationInfo[] = [];
Expand Down Expand Up @@ -87,7 +87,12 @@ export const EsDeprecations = withRouter(({ history }: RouteComponentProps) => {
}, [api, isLoading, isInitialRequest]);

if (error) {
return <EsDeprecationErrors error={error} />;
return (
<DeprecationsPageLoadingError
deprecationSource="Elasticsearch"
message={getEsDeprecationError(error).message}
/>
);
}

if (isLoading) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
import React, { useEffect, useState, useCallback, useMemo } from 'react';
import uuid from 'uuid';
import { withRouter, RouteComponentProps } from 'react-router-dom';
import { EuiPageContent, EuiPageHeader, EuiSpacer, EuiCallOut, EuiEmptyPrompt } from '@elastic/eui';
import { EuiPageContent, EuiPageHeader, EuiSpacer, EuiCallOut } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n/react';

import type { DomainDeprecationDetails } from 'kibana/public';
import { SectionLoading, GlobalFlyout } from '../../../shared_imports';
import { useAppContext } from '../../app_context';
import { NoDeprecationsPrompt, DeprecationCount } from '../shared';
import { DeprecationsPageLoadingError, NoDeprecationsPrompt, DeprecationCount } from '../shared';
import { KibanaDeprecationsTable } from './kibana_deprecations_table';
import {
DeprecationDetailsFlyout,
Expand Down Expand Up @@ -67,15 +67,6 @@ const i18nTexts = {
pluginIds: pluginIds.join(', '),
},
}),
requestErrorTitle: i18n.translate('xpack.upgradeAssistant.kibanaDeprecations.requestErrorTitle', {
defaultMessage: 'Could not retrieve Kibana deprecation issues',
}),
requestErrorDescription: i18n.translate(
'xpack.upgradeAssistant.kibanaDeprecationErrors.requestErrorDescription',
{
defaultMessage: 'Check the Kibana server logs for errors.',
}
),
};

export interface DeprecationResolutionState {
Expand Down Expand Up @@ -251,15 +242,8 @@ export const KibanaDeprecations = withRouter(({ history }: RouteComponentProps)
getAllDeprecations();
}, [deprecations, getAllDeprecations]);

if (kibanaDeprecations && kibanaDeprecations.length === 0) {
return (
<EuiPageContent verticalPosition="center" horizontalPosition="center" color="subdued">
<NoDeprecationsPrompt
deprecationType={i18nTexts.deprecationLabel}
navigateToOverviewPage={() => history.push('/overview')}
/>
</EuiPageContent>
);
if (error) {
return <DeprecationsPageLoadingError deprecationSource="Kibana" />;
}

if (isLoading) {
Expand All @@ -270,63 +254,53 @@ export const KibanaDeprecations = withRouter(({ history }: RouteComponentProps)
);
}

if (kibanaDeprecations?.length) {
if (kibanaDeprecations?.length === 0) {
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 reordered these conditions to match the order in es_deprecations.tsx.

return (
<div data-test-subj="kibanaDeprecations">
<EuiPageHeader
bottomBorder
pageTitle={i18nTexts.pageTitle}
description={i18nTexts.pageDescription}
>
<DeprecationCount
totalCriticalDeprecations={deprecationsCountByLevel.criticalDeprecations}
totalWarningDeprecations={deprecationsCountByLevel.warningDeprecations}
/>
</EuiPageHeader>

<EuiSpacer size="l" />

{kibanaDeprecationErrors.length > 0 && (
<>
<EuiCallOut
title={i18nTexts.kibanaDeprecationErrorTitle}
color="warning"
iconType="alert"
data-test-subj="kibanaDeprecationErrors"
>
<p>{i18nTexts.getKibanaDeprecationErrorDescription(kibanaDeprecationErrors)}</p>
</EuiCallOut>

<EuiSpacer />
</>
)}

<KibanaDeprecationsTable
deprecations={kibanaDeprecations}
reload={getAllDeprecations}
toggleFlyout={toggleFlyout}
deprecationResolutionState={deprecationResolutionState}
<EuiPageContent verticalPosition="center" horizontalPosition="center" color="subdued">
<NoDeprecationsPrompt
deprecationType={i18nTexts.deprecationLabel}
navigateToOverviewPage={() => history.push('/overview')}
/>
</div>
</EuiPageContent>
);
}

if (error) {
return (
<EuiPageContent
verticalPosition="center"
horizontalPosition="center"
color="danger"
data-test-subj="kibanaRequestError"
return (
<div data-test-subj="kibanaDeprecations">
<EuiPageHeader
bottomBorder
pageTitle={i18nTexts.pageTitle}
description={i18nTexts.pageDescription}
>
<EuiEmptyPrompt
iconType="alert"
title={<h2>{i18nTexts.requestErrorTitle}</h2>}
body={<p>{i18nTexts.requestErrorDescription}</p>}
<DeprecationCount
totalCriticalDeprecations={deprecationsCountByLevel.criticalDeprecations}
totalWarningDeprecations={deprecationsCountByLevel.warningDeprecations}
/>
</EuiPageContent>
);
}

return null;
</EuiPageHeader>

<EuiSpacer size="l" />

{kibanaDeprecationErrors.length > 0 && (
<>
<EuiCallOut
title={i18nTexts.kibanaDeprecationErrorTitle}
color="warning"
iconType="alert"
data-test-subj="kibanaDeprecationErrors"
>
<p>{i18nTexts.getKibanaDeprecationErrorDescription(kibanaDeprecationErrors)}</p>
</EuiCallOut>

<EuiSpacer />
</>
)}

<KibanaDeprecationsTable
deprecations={kibanaDeprecations}
reload={getAllDeprecations}
toggleFlyout={toggleFlyout}
deprecationResolutionState={deprecationResolutionState}
/>
</div>
);
});

This file was deleted.

Loading