-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathreflectCollectionsToSearchCategories.test.ts
202 lines (197 loc) · 5.02 KB
/
reflectCollectionsToSearchCategories.test.ts
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
import { IHubCollection } from "../../../src/search/types/IHubCatalog";
import { WellKnownCollection } from "../../../src/search/wellKnownCatalog";
import { reflectCollectionsToSearchCategories } from "../../../src/sites/_internal/reflectCollectionsToSearchCategories";
import { SearchCategories } from "../../../src/sites/_internal/types";
import { IModel } from "../../../src/hub-types";
import { cloneObject } from "../../../src/util";
const BASE_MODEL = {
data: {
catalog: {
schemaVersion: 1,
title: "Default Site Catalog",
scopes: {
item: {
targetEntity: "item",
filters: [],
},
},
collections: [],
},
values: {},
},
} as unknown as IModel;
describe("reflectCollectionsToSearchCategories", () => {
let site: IModel;
beforeEach(() => {
site = cloneObject(BASE_MODEL);
});
it('handles the collection "hidden" configuration', () => {
site.data.catalog.collections = [
{
label: null,
key: "dataset",
targetEntity: "item",
scope: {
targetEntity: "item",
collection: "dataset",
filters: [],
},
displayConfig: {
hidden: true,
},
} as IHubCollection,
{
label: null,
key: "document",
targetEntity: "item",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "item",
collection: "document",
filters: [],
},
} as IHubCollection,
{
label: null,
key: "appAndMap",
targetEntity: "item",
// intentionally leaving out displayConfig.hidden for branch coverage
scope: {
targetEntity: "item",
collection: "appAndMap",
filters: [],
},
} as IHubCollection,
];
const result = reflectCollectionsToSearchCategories(site);
expect(result.data.values.searchCategories).toEqual([
{
key: SearchCategories.DATA,
hidden: true,
queryParams: {
collection: "Dataset",
},
},
{
key: SearchCategories.DOCUMENTS,
hidden: false,
queryParams: {
collection: "Document",
},
},
{
key: SearchCategories.APPS_AND_MAPS,
hidden: false,
queryParams: {
collection: "App,Map",
},
},
]);
});
it("handles re-labeled collections", () => {
site.data.catalog.collections = [
{
label: "My Cool Sites!",
key: "site",
targetEntity: "item",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "item",
collection: "site",
filters: [],
},
} as IHubCollection,
{
label: "Apps & Maps",
key: "appAndMap",
targetEntity: "item",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "item",
collection: "appAndMap",
filters: [],
},
} as IHubCollection,
];
const result = reflectCollectionsToSearchCategories(site);
expect(result.data.values.searchCategories).toEqual([
{
overrideText: "My Cool Sites!",
key: SearchCategories.SITES,
hidden: false,
queryParams: {
collection: "Site",
},
},
{
overrideText: "Apps & Maps",
key: SearchCategories.APPS_AND_MAPS,
hidden: false,
queryParams: {
collection: "App,Map",
},
},
]);
});
it("filters out collections that searchCategories does not support", () => {
site.data.catalog.collections = [
// Can be converted to search category, will be persisted
{
label: null,
key: "dataset",
targetEntity: "item",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "item",
collection: "dataset",
filters: [],
},
} as IHubCollection,
// 'all' _can_ be converted to a search category, but we explicitly do not persist it
{
label: null,
key: "all",
targetEntity: "item",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "item",
collection: "all" as WellKnownCollection,
filters: [],
},
} as IHubCollection,
// Customer-defined collection, cannot be converted to search category
{
label: "My Custom Collection",
key: "custom-collection",
targetEntity: "event",
displayConfig: {
hidden: false,
},
scope: {
targetEntity: "event",
filters: [],
},
} as IHubCollection,
];
const result = reflectCollectionsToSearchCategories(site);
expect(result.data.values.searchCategories).toEqual([
{
key: SearchCategories.DATA,
hidden: false,
queryParams: {
collection: "Dataset",
},
},
]);
});
});