summaryrefslogtreecommitdiff
path: root/spec/javascripts/environments/environment_terminal_button_spec.js
blob: 56e18db59c5abaae2b72a4c8057dbb690d00f079 (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
import Vue from 'vue';
import terminalComp from '~/environments/components/environment_terminal_button.vue';

describe('Stop Component', () => {
  let component;
  const terminalPath = '/path';

  const mountWithProps = props => {
    const TerminalComponent = Vue.extend(terminalComp);
    component = new TerminalComponent({
      propsData: props,
    }).$mount();
  };

  describe('enabled', () => {
    beforeEach(() => {
      mountWithProps({ terminalPath });
    });

    describe('computed', () => {
      it('title', () => {
        expect(component.title).toEqual('Terminal');
      });
    });

    it('should render a link to open a web terminal with the provided path', () => {
      expect(component.$el.tagName).toEqual('A');
      expect(component.$el.getAttribute('data-original-title')).toEqual('Terminal');
      expect(component.$el.getAttribute('aria-label')).toEqual('Terminal');
      expect(component.$el.getAttribute('href')).toEqual(terminalPath);
    });

    it('should render a non-disabled button', () => {
      expect(component.$el.classList).not.toContain('disabled');
    });
  });

  describe('disabled', () => {
    beforeEach(() => {
      mountWithProps({ terminalPath, disabled: true });
    });

    it('should render a disabled button', () => {
      expect(component.$el.classList).toContain('disabled');
    });
  });
});