Skip to content
代码片段 群组 项目
未验证 提交 1d9a8808 编辑于 作者: Zack Cuddy's avatar Zack Cuddy 提交者: GitLab
浏览文件

Criticial Security Alert - Latest Stable Patch

This change adds some conditional
additional text for the critical security
alert for when the user is more than 3
minor versions behind and there is an
available vulnerability patch on their
current minor version.

Changelog: added
上级 0efc6da3
No related branches found
No related tags found
无相关合并请求
......@@ -23,6 +23,9 @@ export default {
modalBodyStableVersions: s__(
'VersionCheck|You are currently on version %{currentVersion}! We strongly recommend upgrading your GitLab installation to one of the following versions immediately: %{latestStableVersions}.',
),
additionalAvailablePatch: s__(
'VersionCheck|Additionally, there is an available stable patch for your current GitLab minor version: %{latestStableVersionOfMinor}',
),
modalDetails: s__('VersionCheck|%{details}'),
learnMore: s__('VersionCheck|Learn more about this critical security release.'),
primaryButtonText: s__('VersionCheck|Upgrade now'),
......@@ -53,6 +56,11 @@ export default {
required: false,
default: () => [],
},
latestStableVersionOfMinor: {
type: String,
required: false,
default: '',
},
},
data() {
return {
......@@ -76,6 +84,12 @@ export default {
latestStableVersionsStrings() {
return this.latestStableVersions?.length > 0 ? this.latestStableVersions.join(', ') : '';
},
showLatestStableVersionOfMinor() {
return (
this.latestStableVersionOfMinor &&
!this.latestStableVersionsStrings.includes(this.latestStableVersionOfMinor)
);
},
},
created() {
if (getHideAlertModalCookie(this.currentVersion)) {
......@@ -136,6 +150,13 @@ export default {
<span class="gl-font-weight-bold">{{ latestStableVersionsStrings }}</span>
</template>
</gl-sprintf>
<div v-if="showLatestStableVersionOfMinor" class="gl-mt-6">
<gl-sprintf :message="$options.i18n.additionalAvailablePatch">
<template #latestStableVersionOfMinor>
<span class="gl-font-weight-bold">{{ latestStableVersionOfMinor }}</span>
</template>
</gl-sprintf>
</div>
</div>
<div v-if="details" data-testid="alert-modal-details" class="gl-mb-6">
{{ modalDetails }}
......
......@@ -36,7 +36,11 @@ const mountSecurityPatchUpgradeAlertModal = (el) => {
const { currentVersion, version } = el.dataset;
try {
const { details, latestStableVersions } = convertObjectPropsToCamelCase(JSON.parse(version));
const {
details,
latestStableVersions,
latestStableVersionOfMinor,
} = convertObjectPropsToCamelCase(JSON.parse(version));
return new Vue({
el,
......@@ -46,6 +50,7 @@ const mountSecurityPatchUpgradeAlertModal = (el) => {
currentVersion,
details,
latestStableVersions,
latestStableVersionOfMinor,
},
});
},
......
......@@ -54182,6 +54182,9 @@ msgstr ""
msgid "VersionCheck|%{details}"
msgstr ""
 
msgid "VersionCheck|Additionally, there is an available stable patch for your current GitLab minor version: %{latestStableVersionOfMinor}"
msgstr ""
msgid "VersionCheck|Important notice - Critical security release"
msgstr ""
 
......@@ -2,7 +2,6 @@ import { GlModal, GlLink, GlSprintf } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { mockTracking, unmockTracking } from 'helpers/tracking_helper';
import { stubComponent, RENDER_ALL_SLOTS_TEMPLATE } from 'helpers/stub_component';
import { sprintf } from '~/locale';
import SecurityPatchUpgradeAlertModal from '~/gitlab_version_check/components/security_patch_upgrade_alert_modal.vue';
import * as utils from '~/gitlab_version_check/utils';
import {
......@@ -16,7 +15,6 @@ describe('SecurityPatchUpgradeAlertModal', () => {
let wrapper;
let trackingSpy;
const hideMock = jest.fn();
const { i18n } = SecurityPatchUpgradeAlertModal;
const defaultProps = {
currentVersion: '11.1.1',
......@@ -72,14 +70,12 @@ describe('SecurityPatchUpgradeAlertModal', () => {
});
it('renders the modal title correctly', () => {
expect(findGlModalTitle().text()).toBe(i18n.modalTitle);
expect(findGlModalTitle().text()).toBe('Important notice - Critical security release');
});
it('renders modal body without suggested versions', () => {
expect(findGlModalBody().text()).toBe(
sprintf(i18n.modalBodyNoStableVersions, {
currentVersion: defaultProps.currentVersion,
}),
`You are currently on version ${defaultProps.currentVersion}! We strongly recommend upgrading your GitLab installation immediately.`,
);
});
......@@ -99,7 +95,7 @@ describe('SecurityPatchUpgradeAlertModal', () => {
describe('Learn more link', () => {
it('renders with correct text and link', () => {
expect(findGlLink().text()).toBe(i18n.learnMore);
expect(findGlLink().text()).toBe('Learn more about this critical security release.');
expect(findGlLink().attributes('href')).toBe(ABOUT_RELEASES_PAGE);
});
......@@ -112,7 +108,7 @@ describe('SecurityPatchUpgradeAlertModal', () => {
describe('Remind me button', () => {
it('renders with correct text', () => {
expect(findGlRemindButton().text()).toBe(i18n.secondaryButtonText);
expect(findGlRemindButton().text()).toBe('Remind me again in 3 days');
});
it(`tracks click ${TRACKING_LABELS.REMIND_ME_BTN} when clicked`, async () => {
......@@ -137,7 +133,7 @@ describe('SecurityPatchUpgradeAlertModal', () => {
describe('Upgrade button', () => {
it('renders with correct text and link', () => {
expect(findGlUpgradeButton().text()).toBe(i18n.primaryButtonText);
expect(findGlUpgradeButton().text()).toBe('Upgrade now');
expect(findGlUpgradeButton().attributes('href')).toBe(UPGRADE_DOCS_URL);
});
......@@ -165,10 +161,11 @@ describe('SecurityPatchUpgradeAlertModal', () => {
it('renders modal body with suggested versions', () => {
expect(findGlModalBody().text()).toBe(
sprintf(i18n.modalBodyStableVersions, {
currentVersion: defaultProps.currentVersion,
latestStableVersions: latestStableVersions.join(', '),
}),
`You are currently on version ${
defaultProps.currentVersion
}! We strongly recommend upgrading your GitLab installation to one of the following versions immediately: ${latestStableVersions.join(
', ',
)}.`,
);
});
});
......@@ -181,7 +178,53 @@ describe('SecurityPatchUpgradeAlertModal', () => {
});
it('renders modal details', () => {
expect(findGlModalDetails().text()).toBe(sprintf(i18n.modalDetails, { details }));
expect(findGlModalDetails().text()).toBe(details);
});
});
describe('template with latestStableVersionOfMinor', () => {
describe('when value is null', () => {
const latestStableVersionOfMinor = null;
beforeEach(() => {
createComponent({ latestStableVersionOfMinor });
});
it('does not render the additional text', () => {
expect(findGlModalBody().text()).not.toContain(
`Additionally, there is an available stable patch for your current GitLab minor version: ${latestStableVersionOfMinor}`,
);
});
});
describe('when value is already included in latestStableVersions', () => {
const latestStableVersionOfMinor = '11.1.2';
const latestStableVersions = ['11.3.1', '11.2.1', '11.1.2'];
beforeEach(() => {
createComponent({ latestStableVersionOfMinor, latestStableVersions });
});
it('does not render the additional text', () => {
expect(findGlModalBody().text()).not.toContain(
`Additionally, there is an available stable patch for your current GitLab minor version: ${latestStableVersionOfMinor}`,
);
});
});
describe('when value is not already included in latestStableVersions', () => {
const latestStableVersionOfMinor = '11.1.2';
const latestStableVersions = ['11.4.1', '11.3.1', '11.2.1'];
beforeEach(() => {
createComponent({ latestStableVersionOfMinor, latestStableVersions });
});
it('does render the additional text', () => {
expect(findGlModalBody().text()).toContain(
`Additionally, there is an available stable patch for your current GitLab minor version: ${latestStableVersionOfMinor}`,
);
});
});
});
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册