summaryrefslogtreecommitdiff
path: root/spec/frontend/monitoring/validators_spec.js
blob: 0c3d77a7d9863a8c9ac526f9f254d068a3c633d5 (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
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
import { alertsValidator, queriesValidator } from '~/monitoring/validators';

describe('alertsValidator', () => {
  const validAlert = {
    alert_path: 'my/alert.json',
    operator: '<',
    threshold: 5,
    metricId: '8',
  };
  it('requires all alerts to have an alert path', () => {
    const { operator, threshold, metricId } = validAlert;
    const input = {
      [validAlert.alert_path]: {
        operator,
        threshold,
        metricId,
      },
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('requires that the object key matches the alert path', () => {
    const input = {
      undefined: validAlert,
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('requires all alerts to have a metric id', () => {
    const input = {
      [validAlert.alert_path]: { ...validAlert, metricId: undefined },
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('requires the metricId to be a string', () => {
    const input = {
      [validAlert.alert_path]: { ...validAlert, metricId: 8 },
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('requires all alerts to have an operator', () => {
    const input = {
      [validAlert.alert_path]: { ...validAlert, operator: '' },
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('requires all alerts to have an numeric threshold', () => {
    const input = {
      [validAlert.alert_path]: { ...validAlert, threshold: '60' },
    };
    expect(alertsValidator(input)).toEqual(false);
  });
  it('correctly identifies a valid alerts object', () => {
    const input = {
      [validAlert.alert_path]: validAlert,
    };
    expect(alertsValidator(input)).toEqual(true);
  });
});
describe('queriesValidator', () => {
  const validQuery = {
    metricId: '8',
    alert_path: 'alert',
    label: 'alert-label',
  };
  it('requires all alerts to have a metric id', () => {
    const input = [{ ...validQuery, metricId: undefined }];
    expect(queriesValidator(input)).toEqual(false);
  });
  it('requires the metricId to be a string', () => {
    const input = [{ ...validQuery, metricId: 8 }];
    expect(queriesValidator(input)).toEqual(false);
  });
  it('requires all queries to have a label', () => {
    const input = [{ ...validQuery, label: undefined }];
    expect(queriesValidator(input)).toEqual(false);
  });
  it('correctly identifies a valid queries array', () => {
    const input = [validQuery];
    expect(queriesValidator(input)).toEqual(true);
  });
});