BigW Consortium Gitlab

monitoring_deployment_spec.js 4.13 KB
Newer Older
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
import Vue from 'vue';
import MonitoringState from '~/monitoring/components/monitoring_deployment.vue';
import { deploymentData } from './mock_data';

const createComponent = (propsData) => {
  const Component = Vue.extend(MonitoringState);

  return new Component({
    propsData,
  }).$mount();
};

describe('MonitoringDeployment', () => {
  const reducedDeploymentData = [deploymentData[0]];
  reducedDeploymentData[0].ref = reducedDeploymentData[0].ref.name;
  reducedDeploymentData[0].xPos = 10;
  reducedDeploymentData[0].time = new Date(reducedDeploymentData[0].created_at);
  describe('Methods', () => {
    it('refText shows the ref when a tag is available', () => {
      reducedDeploymentData[0].tag = '1.0';
      const component = createComponent({
        showDeployInfo: false,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.refText(reducedDeploymentData[0]),
      ).toEqual(reducedDeploymentData[0].ref);
    });

    it('refText shows the sha when no tag is available', () => {
      reducedDeploymentData[0].tag = null;
      const component = createComponent({
        showDeployInfo: false,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.refText(reducedDeploymentData[0]),
      ).toContain('f5bcd1');
    });

    it('nameDeploymentClass creates a class with the prefix deploy-info-', () => {
      const component = createComponent({
        showDeployInfo: false,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.nameDeploymentClass(reducedDeploymentData[0]),
      ).toContain('deploy-info');
    });

    it('transformDeploymentGroup translates an available deployment', () => {
      const component = createComponent({
        showDeployInfo: false,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.transformDeploymentGroup(reducedDeploymentData[0]),
      ).toContain('translate(11, 20)');
    });

    it('hides the deployment flag', () => {
      reducedDeploymentData[0].showDeploymentFlag = false;
      const component = createComponent({
        showDeployInfo: true,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(component.$el.querySelector('.js-deploy-info-box')).toBeNull();
    });

    it('shows the deployment flag', () => {
      reducedDeploymentData[0].showDeploymentFlag = true;
      const component = createComponent({
        showDeployInfo: true,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.$el.querySelector('.js-deploy-info-box').style.display,
      ).not.toEqual('display: none;');
    });

    it('shows the refText inside a text element with the deploy-info-text class', () => {
      reducedDeploymentData[0].showDeploymentFlag = true;
      const component = createComponent({
        showDeployInfo: true,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(
        component.$el.querySelector('.deploy-info-text').firstChild.nodeValue.trim(),
      ).toEqual(component.refText(reducedDeploymentData[0]));
    });

    it('should contain a hidden gradient', () => {
      const component = createComponent({
        showDeployInfo: true,
        deploymentData: reducedDeploymentData,
        graphHeight: 300,
        graphHeightOffset: 120,
      });

      expect(component.$el.querySelector('#shadow-gradient')).not.toBeNull();
    });

    describe('Computed props', () => {
      it('calculatedHeight', () => {
        const component = createComponent({
          showDeployInfo: true,
          deploymentData: reducedDeploymentData,
          graphHeight: 300,
          graphHeightOffset: 120,
        });

        expect(component.calculatedHeight).toEqual(180);
      });
    });
  });
});