forked from rancher/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.test.ts
More file actions
626 lines (519 loc) · 23.8 KB
/
catalog.test.ts
File metadata and controls
626 lines (519 loc) · 23.8 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
import { CATALOG } from '@shell/config/types';
import { CATALOG as CATALOG_ANNOTATIONS } from '@shell/config/labels-annotations';
import {
state, getters, actions, mutations, filterAndArrangeCharts, isRancherRepo, compatibleVersionsFor, getPermittedOSs
} from '../catalog';
import { createStore } from 'vuex';
const clusterRepo = { _key: 'testClusterRepo' };
const repoChartName = 'regular-chart';
const repoChart = {
name: repoChartName,
type: 'namespaced',
version: 1,
metadata: { name: repoChartName }
};
const deprecatedByFieldChartName = 'deprecated-by-field-chart';
const deprecatedByFieldChart = {
name: deprecatedByFieldChartName,
type: 'namespaced',
version: 1,
deprecated: true,
metadata: { name: deprecatedByFieldChartName }
};
const deprecatedByAnnotationChartName = 'deprecated-by-annotation-chart';
const deprecatedByAnnotationChart = {
name: deprecatedByAnnotationChartName,
type: 'namespaced',
version: 1,
annotations: { [CATALOG_ANNOTATIONS.DEPRECATED]: 'true' },
metadata: { name: deprecatedByAnnotationChartName }
};
const repo = {
metadata: { name: 'testRepo' },
_key: 'testRepo',
links: { index: 'fetchindex' },
canLoad: true,
followLink: () => ({
entries: {
[repoChartName]: [repoChart],
[deprecatedByFieldChartName]: [deprecatedByFieldChart],
[deprecatedByAnnotationChartName]: [deprecatedByAnnotationChart]
}
})
};
const catalogStoreName = 'catalog';
const clusterStore = 'cluster';
const expectedChartKey = `namespace/${ repo._key }/${ repoChartName }`;
const expectedDeprecatedByFieldChartKey = `namespace/${ repo._key }/${ deprecatedByFieldChartName }`;
const expectedDeprecatedByAnnotationChartKey = `namespace/${ repo._key }/${ deprecatedByAnnotationChartName }`;
const initialVersionInfo = { junk: true };
const initialRawChartName = 'cde';
const initialRawChart = {
id: `namespace/${ repo._key }/${ initialRawChartName }`,
repoKey: repo._key,
type: 'namespaced',
name: initialRawChartName,
version: 1,
metadata: { name: initialRawChartName }
};
const initialRawCharts = { [initialRawChart.id]: initialRawChart };
const initialLoadedInfo = { [repo._key]: true };
describe('catalog', () => {
describe('load', () => {
const constructStore = () => {
const catalogStore = {
state: state(),
getters,
mutations,
actions,
};
return {
modules: {
i18n: {
namespaced: true,
getters: { withFallback: (state: any) => () => '' }
},
[catalogStoreName]: {
namespaced: true,
state: {
...catalogStore.state,
// Set initial state
// - repos have been loaded
// - some charts exist
// - some chart version info has been fetched
loaded: initialLoadedInfo,
charts: initialRawCharts,
versionInfos: initialVersionInfo,
},
mutations: catalogStore.mutations,
actions: catalogStore.actions,
getters: catalogStore.getters
},
[clusterStore]: {
namespaced: true,
getters: { schemaFor: (state: any) => (schema: string) => ({}) },
actions: {
findAll: (ctx: any, ...args: any[]) => {
if (args[0].type === CATALOG.CLUSTER_REPO) {
return Promise.resolve([clusterRepo]);
}
if (args[0].type === CATALOG.REPO) {
return Promise.resolve([repo]);
}
return Promise.resolve([]);
},
}
}
},
state: {
$extension: { getDynamic: () => require(`@shell/models/chart`) },
[catalogStoreName]: { } as { [key: string]: any},
},
getters: {
currentCluster: () => ({ }),
currentProduct: () => ({ inStore: clusterStore }),
},
mutations: { },
actions: { }
};
};
it('no force', async() => {
const store = createStore(constructStore());
// Validate initial state of store
expect(store.getters[`${ catalogStoreName }/rawCharts`]).toStrictEqual(initialRawCharts);
expect(store.getters[`${ catalogStoreName }/charts`]).toStrictEqual([]);
// Make the request
await store.dispatch(`${ catalogStoreName }/load`, {
force: false,
reset: false
});
// Basics should always be ok
expect(store.getters[`${ catalogStoreName }/inStore`]).toStrictEqual(clusterStore);
expect(store.getters[`${ catalogStoreName }/errors`]).toStrictEqual([]);
expect(store.getters[`${ catalogStoreName }/repos`]).toStrictEqual([clusterRepo, repo]);
expect(store.state[catalogStoreName].loaded).toStrictEqual(initialLoadedInfo);
// Store should still be in it's initial state (but charts populated)
expect(store.getters[`${ catalogStoreName }/rawCharts`]).toStrictEqual(initialRawCharts);
expect(store.getters[`${ catalogStoreName }/charts`]).toStrictEqual([initialRawChart]);
// We haven't reset the version info, so it should be unchanged
expect(store.state[catalogStoreName].versionInfos).toStrictEqual(initialVersionInfo);
});
it('force', async() => {
const store = createStore(constructStore());
// Validate initial state of store
let rawCharts = store.getters[`${ catalogStoreName }/rawCharts`];
expect(store.getters[`${ catalogStoreName }/rawCharts`]).toStrictEqual(initialRawCharts);
expect(rawCharts[initialRawChart.id]).toBeDefined();
expect(rawCharts[initialRawChart.id].id).toBe(initialRawChart.id);
expect(store.getters[`${ catalogStoreName }/charts`]).toStrictEqual([]);
// Make the request
await store.dispatch(`${ catalogStoreName }/load`, {
force: true, // Force such that we should get some values
reset: false
});
rawCharts = store.getters[`${ catalogStoreName }/rawCharts`];
const charts = store.getters[`${ catalogStoreName }/charts`];
// Basics should always be ok
expect(store.getters[`${ catalogStoreName }/inStore`]).toStrictEqual(clusterStore);
expect(store.getters[`${ catalogStoreName }/errors`]).toStrictEqual([]);
expect(store.getters[`${ catalogStoreName }/repos`]).toStrictEqual([clusterRepo, repo]);
expect(store.state[catalogStoreName].loaded).toStrictEqual(initialLoadedInfo);
// Store should have it's initial chart... and the new one
expect(rawCharts[initialRawChart.id]).toBeDefined();
expect(rawCharts[initialRawChart.id].id).toBe(initialRawChart.id);
expect(rawCharts[expectedChartKey]).toBeDefined();
expect(rawCharts[expectedChartKey].id).toBe(expectedChartKey);
expect(rawCharts[expectedChartKey].versions[0].version).toBe(repoChart.version);
expect(rawCharts[expectedDeprecatedByFieldChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByFieldChartKey].id).toBe(expectedDeprecatedByFieldChartKey);
expect(rawCharts[expectedDeprecatedByFieldChartKey].deprecated).toBe(true);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].id).toBe(expectedDeprecatedByAnnotationChartKey);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].deprecated).toBe(true);
expect(charts).toHaveLength(4);
expect(charts.find((c: any) => c.id === initialRawChart.id)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByFieldChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByAnnotationChartKey)).toBeDefined();
// Version info should be unchanged
expect(store.state[catalogStoreName].versionInfos).toStrictEqual(initialVersionInfo);
});
it('force + reset', async() => {
const store = createStore(constructStore());
// Validate initial state of store
expect(store.getters[`${ catalogStoreName }/rawCharts`]).toStrictEqual(initialRawCharts);
expect(store.getters[`${ catalogStoreName }/charts`]).toStrictEqual([]);
// Make the request
await store.dispatch(`${ catalogStoreName }/load`, {
force: true,
reset: true
});
const rawCharts = store.getters[`${ catalogStoreName }/rawCharts`];
const charts = store.getters[`${ catalogStoreName }/charts`];
// Basics should always be ok
expect(store.getters[`${ catalogStoreName }/inStore`]).toStrictEqual(clusterStore);
expect(store.getters[`${ catalogStoreName }/errors`]).toStrictEqual([]);
expect(store.getters[`${ catalogStoreName }/repos`]).toStrictEqual([clusterRepo, repo]);
expect(store.state[catalogStoreName].loaded).toStrictEqual(initialLoadedInfo);
// Store should NOT have it's initial chart... and should have the new one
expect(rawCharts[initialRawChart.id]).not.toBeDefined();
expect(rawCharts[expectedChartKey]).toBeDefined();
expect(rawCharts[expectedChartKey].id).toBe(expectedChartKey);
expect(rawCharts[expectedChartKey].versions[0].version).toBe(repoChart.version);
expect(rawCharts[expectedDeprecatedByFieldChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByFieldChartKey].id).toBe(expectedDeprecatedByFieldChartKey);
expect(rawCharts[expectedDeprecatedByFieldChartKey].deprecated).toBe(true);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].id).toBe(expectedDeprecatedByAnnotationChartKey);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].deprecated).toBe(true);
expect(charts).toHaveLength(3);
expect(charts.find((c: any) => c.id === expectedChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByFieldChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByAnnotationChartKey)).toBeDefined();
// Version info should be changed (it's now empty given reset)
expect(store.state[catalogStoreName].versionInfos).toStrictEqual({ });
});
it('repoKeys provided', async() => {
const store = createStore(constructStore());
// Validate initial state of store
expect(store.getters[`${ catalogStoreName }/rawCharts`]).toStrictEqual(initialRawCharts);
expect(store.getters[`${ catalogStoreName }/charts`]).toStrictEqual([]);
// Make the request targeting specific repo (we provide repo._key)
await store.dispatch(`${ catalogStoreName }/load`, {
force: true,
repoKeys: [repo._key]
});
const rawCharts = store.getters[`${ catalogStoreName }/rawCharts`];
const charts = store.getters[`${ catalogStoreName }/charts`];
// We expect the old chart belonging to this repo to be wiped out
// and replaced entirely by the newly fetched chart.
expect(rawCharts[initialRawChart.id]).not.toBeDefined();
expect(rawCharts[expectedChartKey]).toBeDefined();
expect(rawCharts[expectedChartKey].id).toBe(expectedChartKey);
expect(rawCharts[expectedChartKey].versions[0].version).toBe(repoChart.version);
expect(rawCharts[expectedDeprecatedByFieldChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByFieldChartKey].id).toBe(expectedDeprecatedByFieldChartKey);
expect(rawCharts[expectedDeprecatedByFieldChartKey].deprecated).toBe(true);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].id).toBe(expectedDeprecatedByAnnotationChartKey);
expect(rawCharts[expectedDeprecatedByAnnotationChartKey].deprecated).toBe(true);
expect(charts).toHaveLength(3);
expect(charts.find((c: any) => c.id === expectedChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByFieldChartKey)).toBeDefined();
expect(charts.find((c: any) => c.id === expectedDeprecatedByAnnotationChartKey)).toBeDefined();
});
it('repoKeys provided, ignoring unrelated charts and versions', async() => {
// We will manually inject an unrelated chart to prove it isn't wiped out
const store = createStore(constructStore());
const unrelatedChart = {
id: `namespace/unrelatedRepo/unrelatedChart`,
repoKey: 'unrelatedRepo',
type: 'namespaced',
name: 'unrelatedChart',
version: 1,
metadata: { name: 'unrelatedChart' }
};
const targetedVersionKey = `namespace/testRepo/myChart/1.0.0`;
const unrelatedVersionKey = `namespace/unrelatedRepo/unrelatedChart/1.0.0`;
store.state[catalogStoreName].charts = {
...initialRawCharts,
[unrelatedChart.id]: unrelatedChart
};
store.state[catalogStoreName].versionInfos = {
[targetedVersionKey]: { data: 'old-data' },
[unrelatedVersionKey]: { data: 'keep-me' }
};
// Make the request targeting specific repo
await store.dispatch(`${ catalogStoreName }/load`, {
force: true,
repoKeys: [repo._key]
});
const rawCharts = store.getters[`${ catalogStoreName }/rawCharts`];
const versionInfos = store.state[catalogStoreName].versionInfos;
// The unrelated chart should NOT be wiped
expect(rawCharts[unrelatedChart.id]).toBeDefined();
expect(rawCharts[unrelatedChart.id].repoKey).toBe('unrelatedRepo');
// The old initialRawChart (with repoKey: repo._key) SHOULD be wiped and replaced
expect(rawCharts[initialRawChart.id]).not.toBeDefined();
expect(rawCharts[expectedChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByFieldChartKey]).toBeDefined();
expect(rawCharts[expectedDeprecatedByAnnotationChartKey]).toBeDefined();
// The targeted version info SHOULD be wiped
expect(versionInfos[targetedVersionKey]).not.toBeDefined();
// The unrelated version info should NOT be wiped
expect(versionInfos[unrelatedVersionKey]).toBeDefined();
expect(versionInfos[unrelatedVersionKey].data).toBe('keep-me');
});
});
describe('refresh', () => {
it('calls refresh(false) on all repos and then dispatches a reset load', async() => {
const mockRepo1 = { refresh: jest.fn().mockResolvedValue(true) };
const mockRepo2 = { refresh: jest.fn().mockResolvedValue(true) };
const getters = { repos: [mockRepo1, mockRepo2] };
const dispatch = jest.fn().mockResolvedValue(true);
const commit = jest.fn();
await actions.refresh({
getters, commit, dispatch
});
expect(mockRepo1.refresh).toHaveBeenCalledWith(false);
expect(mockRepo2.refresh).toHaveBeenCalledWith(false);
expect(dispatch).toHaveBeenCalledWith('load', { force: true, reset: true });
});
});
describe('filterAndArrangeCharts', () => {
const mockCharts = [
{
chartName: 'chart-a',
chartNameDisplay: 'Chart Alpha',
chartDescription: 'Description for Alpha',
keywords: ['keyword1', 'keyword2'],
versions: [{ annotations: {}, version: '1.0.0' }],
deprecated: false,
hidden: false,
repoKey: 'repo1',
chartType: 'app',
categories: [],
tags: [],
},
{
chartName: 'chart-b',
chartNameDisplay: 'Chart Beta',
chartDescription: 'Description for Beta',
keywords: ['keyword2', 'keyword3'],
versions: [{ annotations: {}, version: '1.0.0' }],
deprecated: false,
hidden: false,
repoKey: 'repo1',
chartType: 'app',
categories: [],
tags: [],
},
{
chartName: 'chart-c',
chartNameDisplay: 'Chart Gamma',
chartDescription: 'Description for Gamma',
keywords: ['keyword3', 'keyword4'],
versions: [{ annotations: {}, version: '1.0.0' }],
deprecated: false,
hidden: false,
repoKey: 'repo1',
chartType: 'app',
categories: [],
tags: [],
},
];
it('should return all charts when no search query is provided', () => {
const result = filterAndArrangeCharts(mockCharts, {});
expect(result).toHaveLength(mockCharts.length);
});
it('should filter charts by name', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'Chart Alpha' });
expect(result).toHaveLength(1);
expect(result[0].chartNameDisplay).toBe('Chart Alpha');
});
it('should filter charts by description', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'Description for Beta' });
expect(result).toHaveLength(1);
expect(result[0].chartNameDisplay).toBe('Chart Beta');
});
it('should filter charts by keyword', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'keyword1' });
expect(result).toHaveLength(1);
expect(result[0].chartNameDisplay).toBe('Chart Alpha');
});
it('should handle multiple search tokens', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'Chart, keyword2' });
expect(result).toHaveLength(2);
});
it('should be case-insensitive', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'chart alpha' });
expect(result).toHaveLength(1);
expect(result[0].chartNameDisplay).toBe('Chart Alpha');
});
it('should return an empty array if no charts match', () => {
const result = filterAndArrangeCharts(mockCharts, { searchQuery: 'nonexistent' });
expect(result).toHaveLength(0);
});
});
describe('getters', () => {
describe('version', () => {
it('should find a version from a chart, respecting the showDeprecated flag for charts', () => {
// A regular chart with some versions
const regularChart = {
repoType: 'cluster',
repoName: 'rancher-charts',
chartName: 'regular-chart',
deprecated: false,
versions: [{ version: '1.2.3' }, { version: '1.2.4' }]
};
// A deprecated chart with some versions
const deprecatedChart = {
repoType: 'cluster',
repoName: 'rancher-charts',
chartName: 'deprecated-chart',
deprecated: true,
versions: [{ version: '2.0.0' }, { version: '2.1.0' }]
};
const allCharts = [regularChart, deprecatedChart];
const state = {};
const localGetters = {
charts: allCharts,
chart: (args: any) => getters.chart(state, { charts: allCharts })(args)
};
// Scenario 1: Get a version from a regular chart
const result1 = getters.version(state, localGetters)({
repoType: 'cluster',
repoName: 'rancher-charts',
chartName: 'regular-chart',
versionName: '1.2.3',
showDeprecated: false
});
expect(result1).toStrictEqual({ version: '1.2.3' });
// Scenario 2: Get a version from a deprecated chart
const result2 = getters.version(state, localGetters)({
repoType: 'cluster',
repoName: 'rancher-charts',
chartName: 'deprecated-chart',
versionName: '2.0.0',
showDeprecated: true
});
expect(result2).toStrictEqual({ version: '2.0.0' });
// Scenario 3: Try to get a version from a deprecated chart without the flag should fail
const result3 = getters.version(state, localGetters)({
repoType: 'cluster',
repoName: 'rancher-charts',
chartName: 'deprecated-chart',
versionName: '2.0.0',
showDeprecated: false
});
expect(result3).toBeNull();
});
});
});
describe('isRancherRepo', () => {
it('should return true if chart.isRancherRepo is true', () => {
const chart = { isRancherRepo: true } as any;
expect(isRancherRepo(null, chart)).toBe(true);
});
it('should return true if repo.isRancherSource is true', () => {
const repo = { isRancherSource: true } as any;
expect(isRancherRepo(repo, null)).toBe(true);
});
it('should return false if repo is not a rancher source', () => {
const repo = { isRancherSource: false } as any;
expect(isRancherRepo(repo, null)).toBe(false);
});
});
describe('compatibleVersionsFor', () => {
it('should allow versions if no OS constraint is provided', () => {
const chart = { versions: [{ version: '1.0.0' }] } as any;
const versions = compatibleVersionsFor(chart, undefined);
expect(versions).toHaveLength(1);
});
it('should allow windows nodes if permitted-os includes windows', () => {
const chart = {
versions: [{
version: '1.0.0',
annotations: { 'catalog.cattle.io/permits-os': 'linux,windows' }
}]
} as any;
const versions = compatibleVersionsFor(chart, 'windows');
expect(versions).toHaveLength(1);
});
it('should block windows nodes if permitted-os does not include windows', () => {
const chart = {
versions: [{
version: '1.0.0',
annotations: { 'catalog.cattle.io/permits-os': 'linux' }
}]
} as any;
const versions = compatibleVersionsFor(chart, 'windows');
expect(versions).toHaveLength(0);
});
it('should fallback to LINUX for rancher repos and block windows nodes', () => {
const chart = { isRancherRepo: true, versions: [{ version: '1.0.0' }] } as any;
const versions = compatibleVersionsFor(chart, 'windows');
expect(versions).toHaveLength(0);
});
it('should not fallback to LINUX for non-rancher repos and allow windows nodes', () => {
const chart = { isRancherRepo: false, versions: [{ version: '1.0.0' }] } as any;
const versions = compatibleVersionsFor(chart, 'windows');
expect(versions).toHaveLength(1);
});
});
describe('getPermittedOSs', () => {
it('should return explicitly permitted OSs when the annotation is present on a Rancher repo', () => {
const annotations = { [CATALOG_ANNOTATIONS.PERMITTED_OS]: 'linux,windows' };
const result = getPermittedOSs(annotations, true);
expect(result).toHaveLength(2);
expect(result).toContain('linux');
expect(result).toContain('windows');
});
it('should return explicitly permitted OSs when the annotation is present on a non-Rancher repo', () => {
const annotations = { [CATALOG_ANNOTATIONS.PERMITTED_OS]: 'linux' };
const result = getPermittedOSs(annotations, false);
expect(result).toHaveLength(1);
expect(result).toContain('linux');
});
it('should fallback to linux if the annotation is missing on a Rancher repo', () => {
const annotations = {};
const result = getPermittedOSs(annotations, true);
expect(result).toHaveLength(1);
expect(result).toContain('linux');
});
it('should return an empty array (no restrictions) if the annotation is missing on a non-Rancher repo', () => {
const annotations = {};
const result = getPermittedOSs(annotations, false);
expect(result).toHaveLength(0);
});
it('should handle undefined annotations safely for Rancher repos', () => {
const result = getPermittedOSs(undefined, true);
expect(result).toHaveLength(1);
expect(result).toContain('linux');
});
it('should handle undefined annotations safely for non-Rancher repos', () => {
const result = getPermittedOSs(undefined, false);
expect(result).toHaveLength(0);
});
});
});