-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathhelpers.ts
189 lines (174 loc) · 5.6 KB
/
helpers.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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import type { Page } from '@playwright/test';
import { test } from '@playwright/test';
import type { Rotation } from './constants';
interface FileExample {
slugifiedName: string;
name: string;
filename: string;
url: string;
filePath: string;
}
type TestExamples = {
groupFile: string;
slugifiedGroupTitle: string;
groupTitle: string;
exampleFiles: FileExample[];
}[];
export interface StoryGroupInfo {
group: string;
encodedGroup: string;
stories: {
name: string;
slugifiedName: string;
}[];
}
/**
* Groups to skip in all vrt.
*/
const groupsToSkip: Set<string> = new Set(['Components/Tooltip', 'Bullet Graph']);
/**
* Stories to skip in all vrt based by group.
*/
const storiesToSkip: Map<string, string[]> = new Map(
Object.entries({
'Test Cases': ['noSeries', 'errorBoundary'],
Interactions: ['multiChartCursorSync'],
'Metric (@alpha)': ['bodyContent'],
}),
);
export function getStorybookInfo(): StoryGroupInfo[] {
try {
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires
const examples = require('../e2e_server/tmp/examples.json') as TestExamples;
return examples
.filter(
({ groupTitle, slugifiedGroupTitle }) =>
!groupsToSkip.has(groupTitle) && !groupsToSkip.has(slugifiedGroupTitle),
)
.map<StoryGroupInfo>(({ groupTitle: group, slugifiedGroupTitle, exampleFiles }) => {
return {
group,
encodedGroup: slugifiedGroupTitle,
stories: exampleFiles
.filter(({ name, slugifiedName }: any) => {
const skipStoryName = name ? storiesToSkip.get(group)?.includes(name) : false;
const skipStorySlug = slugifiedName ? storiesToSkip.get(group)?.includes(slugifiedName) : false;
return !skipStoryName && !skipStorySlug;
})
.map(({ name, slugifiedName }) => ({
name,
slugifiedName,
})),
};
});
} catch {
throw new Error('A required file is not available, please run yarn test:e2e:generate');
}
}
const rotationCases: [string, Rotation][] = [
['0', 0],
['90', 90],
['180', 180],
['negative 90', -90],
];
interface EachRotationCbParams {
page: Page;
rotation: Rotation;
label: string;
}
/**
* This is a wrapper around it.each for Rotations
* This is needed as the negative sign (-) will be excluded from the png filename
*/
export const eachRotation = {
test(
fn: (params: EachRotationCbParams) => any,
titleFn: (rotationLabel: string) => string = (r) => `rotation - ${r}`,
) {
// return it.each<[string, Rotation]>(rotationCases)(title, (_, r) => fn(r));
rotationCases.forEach(([label, rotation]) => {
test(titleFn(label), ({ page }) => fn({ page, rotation, label }));
});
},
describe(
fn: (params: Omit<EachRotationCbParams, 'page'>) => any,
titleFn: (rotationLabel: string) => string = (r) => `rotation - ${r}`,
) {
rotationCases.forEach(([label, rotation]) => {
test.describe(titleFn(label), () => fn({ rotation, label }));
});
},
};
interface EachThemeCbParams {
page: Page;
theme: string;
urlParam: string;
}
export const themeIds = ['light', 'dark'];
/**
* This is a wrapper around it.each for Themes
* Returns the requried query params to trigger correct theme
*/
export const eachTheme = {
test(fn: (params: EachThemeCbParams) => any, titleFn: (theme: string) => string = (t) => `theme - ${t}`) {
themeIds.forEach((theme) => {
test(titleFn(theme), ({ page }) => fn({ page, theme, urlParam: `globals=theme:${theme}` }));
});
},
describe(
fn: (params: Omit<EachThemeCbParams, 'page'>) => any,
titleFn: (theme: string) => string = (t) => `theme - ${t}`,
config?: Parameters<typeof test.describe.configure>[0],
) {
themeIds.forEach((theme) => {
test.describe(titleFn(theme), () => {
if (config) test.describe.configure(config);
fn({ theme, urlParam: `globals=theme:${theme}` });
});
});
},
};
/**
* A helper class to replace `describe.each` and `it.each` from jest in playwright
*/
export const pwEach = {
/**
* Similar to jest's `it.each` for playwright
*/
test<T>(values: T[]) {
const titles = new Set();
return (titleFn: (value: T) => string, fn: (page: Page, value: T) => Promise<any> | any) => {
values.forEach((value) => {
const title = titleFn(value);
if (titles.has(title)) throw new Error('Each test within `each.test` block must have a unique title.');
titles.add(title);
// eslint-disable-next-line @typescript-eslint/return-await
test(title, async ({ page }) => await fn(page, value));
});
};
},
/**
* Similar to jest's `describe.each` for playwright
*/
describe<T>(values: T[], config?: Parameters<typeof test.describe.configure>[0]) {
const titles = new Set();
return (titleFn: (value: T) => string, fn: (value: T) => any) => {
values.forEach((value) => {
const title = titleFn(value);
if (titles.has(title)) throw new Error('Each describe within `each.describe` block must have a unique title.');
titles.add(title);
test.describe(title, () => {
if (config) test.describe.configure(config);
fn(value);
});
});
};
},
};