Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 18:44:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 18:44:42 +0300
commit4555e1b21c365ed8303ffb7a3325d773c9b8bf31 (patch)
tree5423a1c7516cffe36384133ade12572cf709398d /spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js
parente570267f2f6b326480d284e0164a6464ba4081bc (diff)
Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42
Diffstat (limited to 'spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js')
-rw-r--r--spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js b/spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js
new file mode 100644
index 00000000000..b73f4d6a396
--- /dev/null
+++ b/spec/frontend/vue_shared/components/alerts_deprecation_warning_spec.js
@@ -0,0 +1,48 @@
+import { GlAlert, GlLink } from '@gitlab/ui';
+import { mount } from '@vue/test-utils';
+import AlertDeprecationWarning from '~/vue_shared/components/alerts_deprecation_warning.vue';
+
+describe('AlertDetails', () => {
+ let wrapper;
+
+ function mountComponent(hasManagedPrometheus = false) {
+ wrapper = mount(AlertDeprecationWarning, {
+ provide: {
+ hasManagedPrometheus,
+ },
+ });
+ }
+
+ afterEach(() => {
+ wrapper.destroy();
+ wrapper = null;
+ });
+
+ const findAlert = () => wrapper.findComponent(GlAlert);
+ const findLink = () => wrapper.findComponent(GlLink);
+
+ describe('Alert details', () => {
+ describe('with no manual prometheus', () => {
+ beforeEach(() => {
+ mountComponent();
+ });
+
+ it('renders nothing', () => {
+ expect(findAlert().exists()).toBe(false);
+ });
+ });
+
+ describe('with manual prometheus', () => {
+ beforeEach(() => {
+ mountComponent(true);
+ });
+
+ it('renders a deprecation notice', () => {
+ expect(findAlert().text()).toContain('GitLab-managed Prometheus is deprecated');
+ expect(findLink().attributes('href')).toContain(
+ 'operations/metrics/alerts.html#managed-prometheus-instances',
+ );
+ });
+ });
+ });
+});