|
1 |
| -import { Expression } from "./expression"; |
2 |
| -import { LabelSelector, LabelsWithValues, MatchingOperator } from "./types"; |
| 1 | +import { Expression } from './expression'; |
| 2 | +import { LabelSelector, LabelsWithValues, MatchingOperator } from './types'; |
3 | 3 |
|
4 |
| -describe("Expression", () => { |
| 4 | +describe('Expression', () => { |
5 | 5 | it.each([
|
6 | 6 | {
|
7 |
| - metric: "", |
| 7 | + metric: '', |
8 | 8 | values: {},
|
9 | 9 | defaultOperator: MatchingOperator.equal,
|
10 | 10 | defaultSelectors: [],
|
11 | 11 | additionalSelectors: [],
|
12 |
| - expected: "{}", |
| 12 | + expected: '{}', |
13 | 13 | },
|
14 | 14 | {
|
15 |
| - metric: "test_metric", |
| 15 | + metric: 'test_metric', |
16 | 16 | values: {},
|
17 | 17 | defaultOperator: MatchingOperator.equal,
|
18 | 18 | defaultSelectors: [],
|
19 | 19 | additionalSelectors: [],
|
20 |
| - expected: "test_metric{}", |
| 20 | + expected: 'test_metric{}', |
21 | 21 | },
|
22 | 22 | {
|
23 |
| - metric: "test_metric", |
24 |
| - values: { cluster: "test/cluster" }, |
| 23 | + metric: 'test_metric', |
| 24 | + values: { cluster: 'test/cluster' }, |
25 | 25 | defaultOperator: MatchingOperator.equal,
|
26 | 26 | expected: 'test_metric{cluster="test/cluster"}',
|
27 | 27 | },
|
28 | 28 | {
|
29 |
| - metric: "test_metric", |
30 |
| - values: { cluster: "test/cluster" }, |
| 29 | + metric: 'test_metric', |
| 30 | + values: { cluster: 'test/cluster' }, |
31 | 31 | defaultOperator: MatchingOperator.notEqual,
|
32 | 32 | expected: 'test_metric{cluster!="test/cluster"}',
|
33 | 33 | },
|
34 | 34 | {
|
35 |
| - metric: "test_metric", |
36 |
| - values: { cluster: "test/cluster" }, |
| 35 | + metric: 'test_metric', |
| 36 | + values: { cluster: 'test/cluster' }, |
37 | 37 | defaultOperator: MatchingOperator.regexMatch,
|
38 | 38 | expected: 'test_metric{cluster=~"test/cluster"}',
|
39 | 39 | },
|
40 | 40 | {
|
41 |
| - metric: "test_metric", |
42 |
| - values: { cluster: "test/cluster" }, |
| 41 | + metric: 'test_metric', |
| 42 | + values: { cluster: 'test/cluster' }, |
43 | 43 | defaultOperator: MatchingOperator.notRegexMatch,
|
44 | 44 | expected: 'test_metric{cluster!~"test/cluster"}',
|
45 | 45 | },
|
46 | 46 | {
|
47 |
| - metric: "test_metric", |
| 47 | + metric: 'test_metric', |
48 | 48 | values: {},
|
49 | 49 | defaultOperator: MatchingOperator.equal,
|
50 |
| - defaultSelectors: [ |
51 |
| - { operator: MatchingOperator.notEqual, label: "container", value: "" }, |
52 |
| - ], |
| 50 | + defaultSelectors: [{ operator: MatchingOperator.notEqual, label: 'container', value: '' }], |
53 | 51 | additionalSelectors: [],
|
54 | 52 | expected: 'test_metric{container!=""}',
|
55 | 53 | },
|
56 | 54 | {
|
57 |
| - metric: "test_metric", |
58 |
| - values: { cluster: "test/cluster" }, |
| 55 | + metric: 'test_metric', |
| 56 | + values: { cluster: 'test/cluster' }, |
59 | 57 | defaultOperator: MatchingOperator.equal,
|
60 |
| - defaultSelectors: [ |
61 |
| - { operator: MatchingOperator.notEqual, label: "container", value: "" }, |
62 |
| - ], |
| 58 | + defaultSelectors: [{ operator: MatchingOperator.notEqual, label: 'container', value: '' }], |
63 | 59 | additionalSelectors: [],
|
64 | 60 | expected: 'test_metric{container!="", cluster="test/cluster"}',
|
65 | 61 | },
|
66 | 62 | {
|
67 |
| - metric: "test_metric", |
68 |
| - values: { cluster: "test/cluster", container: undefined }, |
| 63 | + metric: 'test_metric', |
| 64 | + values: { cluster: 'test/cluster', container: undefined }, |
69 | 65 | defaultOperator: MatchingOperator.equal,
|
70 |
| - defaultSelectors: [ |
71 |
| - { operator: MatchingOperator.notEqual, label: "container", value: "" }, |
72 |
| - ], |
| 66 | + defaultSelectors: [{ operator: MatchingOperator.notEqual, label: 'container', value: '' }], |
73 | 67 | additionalSelectors: [],
|
74 | 68 | expected: 'test_metric{container!="", cluster="test/cluster"}',
|
75 | 69 | },
|
76 | 70 | {
|
77 |
| - metric: "test_metric", |
78 |
| - values: { cluster: "test/cluster", container: "test-container" }, |
| 71 | + metric: 'test_metric', |
| 72 | + values: { cluster: 'test/cluster', container: 'test-container' }, |
79 | 73 | defaultOperator: MatchingOperator.equal,
|
80 |
| - defaultSelectors: [ |
81 |
| - { operator: MatchingOperator.notEqual, label: "container", value: "" }, |
82 |
| - ], |
| 74 | + defaultSelectors: [{ operator: MatchingOperator.notEqual, label: 'container', value: '' }], |
83 | 75 | additionalSelectors: [],
|
84 |
| - expected: |
85 |
| - 'test_metric{container="test-container", cluster="test/cluster"}', |
| 76 | + expected: 'test_metric{container="test-container", cluster="test/cluster"}', |
86 | 77 | },
|
87 | 78 | ])(
|
88 |
| - "Generate PromQL query: $expected", |
89 |
| - ({ |
90 |
| - metric, |
91 |
| - values, |
92 |
| - defaultOperator, |
93 |
| - defaultSelectors, |
94 |
| - additionalSelectors, |
95 |
| - expected, |
96 |
| - }) => { |
| 79 | + 'Generate PromQL query: $expected', |
| 80 | + ({ metric, values, defaultOperator, defaultSelectors, additionalSelectors, expected }) => { |
97 | 81 | const expr = new Expression({
|
98 | 82 | metric,
|
99 | 83 | values: values as LabelsWithValues,
|
|
0 commit comments