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

survey_banner_spec.js « serverless « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29b36fb9b5f195c5e06ada0c8c9b54992f9e445a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { shallowMount } from '@vue/test-utils';
import Cookies from 'js-cookie';
import { GlBanner } from '@gitlab/ui';
import SurveyBanner from '~/serverless/survey_banner.vue';

describe('Knative survey banner', () => {
  let wrapper;

  function mountBanner() {
    wrapper = shallowMount(SurveyBanner, {
      propsData: {
        surveyUrl: 'http://somesurvey.com/',
      },
    });
  }

  afterEach(() => {
    wrapper.destroy();
    wrapper = null;
  });

  it('should render the banner when the cookie is absent', () => {
    jest.spyOn(Cookies, 'get').mockReturnValue(undefined);
    mountBanner();

    expect(Cookies.get).toHaveBeenCalled();
    expect(wrapper.find(GlBanner).exists()).toBe(true);
  });

  it('should close the banner and set a cookie when close button is clicked', () => {
    jest.spyOn(Cookies, 'get').mockReturnValue(undefined);
    jest.spyOn(Cookies, 'set');
    mountBanner();

    expect(wrapper.find(GlBanner).exists()).toBe(true);
    wrapper.find(GlBanner).vm.$emit('close');

    return wrapper.vm.$nextTick().then(() => {
      expect(Cookies.set).toHaveBeenCalledWith('hide_serverless_survey', 'true', { expires: 3650 });
      expect(wrapper.find(GlBanner).exists()).toBe(false);
    });
  });

  it('should not render the banner when the cookie is set', () => {
    jest.spyOn(Cookies, 'get').mockReturnValue('true');
    mountBanner();

    expect(Cookies.get).toHaveBeenCalled();
    expect(wrapper.find(GlBanner).exists()).toBe(false);
  });
});