mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-04 20:57:17 +02:00
135 lines
3.2 KiB
JavaScript
135 lines
3.2 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
const {validateThemeConfig, DEFAULT_CONFIG} = require('../validateThemeConfig');
|
|
|
|
function testValidateThemeConfig(themeConfig) {
|
|
function validate(schema, cfg) {
|
|
const {value, error} = schema.validate(cfg, {
|
|
convert: false,
|
|
});
|
|
if (error) {
|
|
throw error;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
return validateThemeConfig({themeConfig, validate});
|
|
}
|
|
|
|
describe('validateThemeConfig', () => {
|
|
test('minimal config', () => {
|
|
const algolia = {
|
|
indexName: 'index',
|
|
apiKey: 'apiKey',
|
|
};
|
|
expect(testValidateThemeConfig({algolia})).toEqual({
|
|
algolia: {
|
|
...DEFAULT_CONFIG,
|
|
...algolia,
|
|
},
|
|
});
|
|
});
|
|
|
|
test('unknown attributes', () => {
|
|
const algolia = {
|
|
indexName: 'index',
|
|
apiKey: 'apiKey',
|
|
unknownKey: 'unknownKey',
|
|
};
|
|
expect(testValidateThemeConfig({algolia})).toEqual({
|
|
algolia: {
|
|
...DEFAULT_CONFIG,
|
|
...algolia,
|
|
},
|
|
});
|
|
});
|
|
|
|
test('undefined config', () => {
|
|
const algolia = undefined;
|
|
expect(() =>
|
|
testValidateThemeConfig({algolia}),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"\\"themeConfig.algolia\\" is required"`,
|
|
);
|
|
});
|
|
|
|
test('undefined config 2', () => {
|
|
expect(() =>
|
|
testValidateThemeConfig({}),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"\\"themeConfig.algolia\\" is required"`,
|
|
);
|
|
});
|
|
|
|
test('empty config', () => {
|
|
const algolia = {};
|
|
expect(() =>
|
|
testValidateThemeConfig({algolia}),
|
|
).toThrowErrorMatchingInlineSnapshot(`"\\"algolia.apiKey\\" is required"`);
|
|
});
|
|
|
|
test('missing indexName config', () => {
|
|
const algolia = {apiKey: 'apiKey'};
|
|
expect(() =>
|
|
testValidateThemeConfig({algolia}),
|
|
).toThrowErrorMatchingInlineSnapshot(
|
|
`"\\"algolia.indexName\\" is required"`,
|
|
);
|
|
});
|
|
|
|
test('missing apiKey config', () => {
|
|
const algolia = {indexName: 'indexName'};
|
|
expect(() =>
|
|
testValidateThemeConfig({algolia}),
|
|
).toThrowErrorMatchingInlineSnapshot(`"\\"algolia.apiKey\\" is required"`);
|
|
});
|
|
|
|
test('contextualSearch config', () => {
|
|
const algolia = {
|
|
indexName: 'index',
|
|
apiKey: 'apiKey',
|
|
contextualSearch: true,
|
|
};
|
|
expect(testValidateThemeConfig({algolia})).toEqual({
|
|
algolia: {
|
|
...DEFAULT_CONFIG,
|
|
...algolia,
|
|
},
|
|
});
|
|
});
|
|
|
|
test('externalUrlRegex config', () => {
|
|
const algolia = {
|
|
indexName: 'index',
|
|
apiKey: 'apiKey',
|
|
externalUrlRegex: 'http://external-domain.com',
|
|
};
|
|
expect(testValidateThemeConfig({algolia})).toEqual({
|
|
algolia: {
|
|
...DEFAULT_CONFIG,
|
|
...algolia,
|
|
},
|
|
});
|
|
});
|
|
|
|
test('searchParameters.facetFilters search config', () => {
|
|
const algolia = {
|
|
indexName: 'index',
|
|
apiKey: 'apiKey',
|
|
searchParameters: {
|
|
facetFilters: ['version:1.0'],
|
|
},
|
|
};
|
|
expect(testValidateThemeConfig({algolia})).toEqual({
|
|
algolia: {
|
|
...DEFAULT_CONFIG,
|
|
...algolia,
|
|
},
|
|
});
|
|
});
|
|
});
|