mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-10 15:47:23 +02:00
* feat(v2): add option validation lifecycle method * chore(v2): add dependencies * chore(v2): add yup dependency * feat(v2): add option validation for plugin-content-docs * chore(v2): add facebook copyright * refactor(v2): remove unused variable * chore(v2): add dependencies * chore(v2): add copyright * fix(v2): use strict for option validation * feat(v2): add option validation for plugin-content-pages * feat(v2): add schema for plugin-google-analytics and plugin-google-gtag * feat(v2): add option validation for plugin-sitemap * chore(v2): add dependency for yup * fix(v2): remove strict to allow normalization * refactor(v2): refactor validate method * feat(v2): modify existing tests * feat(v2): add tests for plugin normalization * style(v2): use a more descriptive filename for schema * feat(v2): add normalization tests * feat(v2): add more tests for option validation * refactor(v2): remove unused code * refactor(v2): remove unused code * refactor(v2): refactor methods and types * feat(v2): replace Yup with Joi * fix(v2): fix plugin-content-docs schema * feat(v2): modify tests for plugin-content-docs * fix(v2): fix a typo * refactor(v2): improve tests and refactor code * feat(v2): support both commonjs and ES modules * refactor(v2): refactor validateOption method * style(v2): fix eslint errors and typo in types * chore(v2): remove unused yup dependency * style(v2): standardize naming across official plugins * chore(v2): update test snapshots * chore(v2): remove obsolete snapshots * chore(v2): fix a typo and check test * feat(v2): add validation for new field * feat(v2): add test for new field
144 lines
5 KiB
TypeScript
144 lines
5 KiB
TypeScript
/**
|
|
* 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 loadSidebars from '../sidebars';
|
|
|
|
/* eslint-disable global-require, import/no-dynamic-require */
|
|
|
|
describe('loadSidebars', () => {
|
|
const fixtureDir = path.join(__dirname, '__fixtures__', 'sidebars');
|
|
test('sidebars with known sidebar item type', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars.json');
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
|
|
test('sidebars with deep level of category', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-category.js');
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
|
|
test('sidebars shorthand and longform lead to exact same sidebar', async () => {
|
|
const sidebarPath1 = path.join(fixtureDir, 'sidebars-category.js');
|
|
const sidebarPath2 = path.join(
|
|
fixtureDir,
|
|
'sidebars-category-shorthand.js',
|
|
);
|
|
const sidebar1 = loadSidebars([sidebarPath1]);
|
|
const sidebar2 = loadSidebars([sidebarPath2]);
|
|
expect(sidebar1).toEqual(sidebar2);
|
|
});
|
|
|
|
test('sidebars with category but category.items is not an array', async () => {
|
|
const sidebarPath = path.join(
|
|
fixtureDir,
|
|
'sidebars-category-wrong-items.json',
|
|
);
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Error loading {\\"type\\":\\"category\\",\\"label\\":\\"Category Label\\",\\"items\\":\\"doc1\\"}. \\"items\\" must be an array."`,
|
|
);
|
|
});
|
|
|
|
test('sidebars with category but category label is not a string', async () => {
|
|
const sidebarPath = path.join(
|
|
fixtureDir,
|
|
'sidebars-category-wrong-label.json',
|
|
);
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Error loading {\\"type\\":\\"category\\",\\"label\\":true,\\"items\\":[\\"doc1\\"]}. \\"label\\" must be a string."`,
|
|
);
|
|
});
|
|
|
|
test('sidebars item doc but id is not a string', async () => {
|
|
const sidebarPath = path.join(
|
|
fixtureDir,
|
|
'sidebars-doc-id-not-string.json',
|
|
);
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Error loading {\\"type\\":\\"doc\\",\\"id\\":[\\"doc1\\"]}. \\"id\\" must be a string."`,
|
|
);
|
|
});
|
|
|
|
test('sidebars with first level not a category', async () => {
|
|
const sidebarPath = path.join(
|
|
fixtureDir,
|
|
'sidebars-first-level-not-category.js',
|
|
);
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
|
|
test('sidebars link', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-link.json');
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
|
|
test('sidebars link wrong label', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-link-wrong-label.json');
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Error loading {\\"type\\":\\"link\\",\\"label\\":false,\\"href\\":\\"https://github.com\\"}. \\"label\\" must be a string."`,
|
|
);
|
|
});
|
|
|
|
test('sidebars link wrong href', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-link-wrong-href.json');
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Error loading {\\"type\\":\\"link\\",\\"label\\":\\"GitHub\\",\\"href\\":[\\"example.com\\"]}. \\"href\\" must be a string."`,
|
|
);
|
|
});
|
|
|
|
test('sidebars with unknown sidebar item type', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-unknown-type.json');
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Unknown sidebar item type [superman]. Sidebar item={\\"type\\":\\"superman\\"} "`,
|
|
);
|
|
});
|
|
|
|
test('sidebars with known sidebar item type but wrong field', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-wrong-field.json');
|
|
expect(() =>
|
|
loadSidebars([sidebarPath]),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"Unknown sidebar item keys: href. Item: {\\"type\\":\\"category\\",\\"label\\":\\"category\\",\\"href\\":\\"https://github.com\\"}"`,
|
|
);
|
|
});
|
|
|
|
test('no sidebars', () => {
|
|
const result = loadSidebars(null);
|
|
expect(result).toEqual({});
|
|
});
|
|
|
|
test('sidebars with category.collapsed property', async () => {
|
|
const sidebarPath = path.join(fixtureDir, 'sidebars-collapsed.json');
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
|
|
test('sidebars with category.collapsed property at first level', async () => {
|
|
const sidebarPath = path.join(
|
|
fixtureDir,
|
|
'sidebars-collapsed-first-level.json',
|
|
);
|
|
const result = loadSidebars([sidebarPath]);
|
|
expect(result).toMatchSnapshot();
|
|
});
|
|
});
|