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

ci_variable_popover_spec.js « components « ci_variable_list « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d0c378d10e9463896564937e960384197fd3639 (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
import { GlButton } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import CiVariablePopover from '~/ci_variable_list/components/ci_variable_popover.vue';
import mockData from '../services/mock_data';

describe('Ci Variable Popover', () => {
  let wrapper;

  const defaultProps = {
    target: 'ci-variable-value-22',
    value: mockData.mockPemCert,
    tooltipText: 'Copy value',
  };

  const createComponent = (props = defaultProps) => {
    wrapper = shallowMount(CiVariablePopover, {
      propsData: { ...props },
    });
  };

  const findButton = () => wrapper.findComponent(GlButton);

  beforeEach(() => {
    createComponent();
  });

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

  it('displays max count plus ... when character count is over 95', () => {
    expect(wrapper.text()).toHaveLength(98);
  });

  it('copies full value to clipboard', () => {
    expect(findButton().attributes('data-clipboard-text')).toEqual(mockData.mockPemCert);
  });

  it('displays full value when count is less than max count', () => {
    createComponent({
      target: 'ci-variable-value-22',
      value: 'test_variable_value',
      tooltipText: 'Copy value',
    });
    expect(wrapper.text()).toEqual('test_variable_value');
  });
});