-
-
Notifications
You must be signed in to change notification settings - Fork 9k
/
Copy pathindex.test.ts
88 lines (81 loc) · 2.49 KB
/
index.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
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import path from 'path';
import {loadContext} from '@docusaurus/core/src/server/site';
import {normalizePluginOptions} from '@docusaurus/utils-validation';
import {fromPartial} from '@total-typescript/shoehorn';
import pluginContentShowcase from '../index';
import {validateOptions} from '../options';
import type {PluginOptions} from '@docusaurus/plugin-content-showcase';
const loadPluginContent = async (siteDir: string, options: PluginOptions) => {
const context = await loadContext({siteDir});
const plugin = await pluginContentShowcase(
context,
validateOptions({
validate: normalizePluginOptions,
options,
}),
);
return plugin.loadContent!();
};
describe('docusaurus-plugin-content-showcase', () => {
it('loads simple showcase', async () => {
const siteDir = path.join(__dirname, '__fixtures__', 'website');
const showcaseMetadata = await loadPluginContent(
siteDir,
fromPartial({
path: 'src/showcase',
tags: 'tags.yaml',
}),
);
expect(showcaseMetadata).toMatchSnapshot();
});
it('loads simple showcase with tags in options', async () => {
const tags = {
opensource: {
label: 'Open-Source',
description: {
message:
'Open-Source Docusaurus sites can be useful for inspiration!',
id: 'showcase.tag.opensource.description',
},
color: '#39ca30',
},
meta: {
label: 'Meta',
description: {
message: 'Docusaurus sites of Meta (formerly Facebook) projects',
id: 'showcase.tag.meta.description',
},
color: '#4267b2',
},
};
const siteDir = path.join(__dirname, '__fixtures__', 'website');
const showcaseMetadata = await loadPluginContent(
siteDir,
fromPartial({
path: 'src/showcase',
tags,
}),
);
expect(showcaseMetadata).toMatchSnapshot();
});
it('throw loading inexistant tags file', async () => {
const siteDir = path.join(__dirname, '__fixtures__', 'website');
await expect(async () => {
await loadPluginContent(
siteDir,
fromPartial({
path: 'src/showcase',
tags: 'wrong.yaml',
}),
);
}).rejects.toThrowErrorMatchingInlineSnapshot(
`"Failed to read tags file for showcase"`,
);
});
});