mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 17:57:48 +02:00
119 lines
4.1 KiB
TypeScript
119 lines
4.1 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 {createTempRepo} from '@testing-utils/git';
|
|
import {jest} from '@jest/globals';
|
|
import fs from 'fs-extra';
|
|
import path from 'path';
|
|
import shell from 'shelljs';
|
|
|
|
import {getFileLastUpdate} from '../lastUpdate';
|
|
|
|
describe('getFileLastUpdate', () => {
|
|
const existingFilePath = path.join(
|
|
__dirname,
|
|
'__fixtures__/simple-site/docs/hello.md',
|
|
);
|
|
it('existing test file in repository with Git timestamp', async () => {
|
|
const lastUpdateData = await getFileLastUpdate(existingFilePath);
|
|
expect(lastUpdateData).not.toBeNull();
|
|
|
|
const {author, timestamp} = lastUpdateData;
|
|
expect(author).not.toBeNull();
|
|
expect(typeof author).toBe('string');
|
|
|
|
expect(timestamp).not.toBeNull();
|
|
expect(typeof timestamp).toBe('number');
|
|
});
|
|
|
|
it('existing test file with spaces in path', async () => {
|
|
const filePathWithSpace = path.join(
|
|
__dirname,
|
|
'__fixtures__/simple-site/docs/doc with space.md',
|
|
);
|
|
const lastUpdateData = await getFileLastUpdate(filePathWithSpace);
|
|
expect(lastUpdateData).not.toBeNull();
|
|
|
|
const {author, timestamp} = lastUpdateData;
|
|
expect(author).not.toBeNull();
|
|
expect(typeof author).toBe('string');
|
|
|
|
expect(timestamp).not.toBeNull();
|
|
expect(typeof timestamp).toBe('number');
|
|
});
|
|
|
|
it('non-existing file', async () => {
|
|
const consoleMock = jest
|
|
.spyOn(console, 'warn')
|
|
.mockImplementation(() => {});
|
|
const nonExistingFileName = '.nonExisting';
|
|
const nonExistingFilePath = path.join(
|
|
__dirname,
|
|
'__fixtures__',
|
|
nonExistingFileName,
|
|
);
|
|
await expect(getFileLastUpdate(nonExistingFilePath)).resolves.toBeNull();
|
|
expect(consoleMock).toHaveBeenCalledTimes(1);
|
|
expect(consoleMock).toHaveBeenLastCalledWith(
|
|
expect.stringMatching(/because the file does not exist./),
|
|
);
|
|
await expect(getFileLastUpdate(null)).resolves.toBeNull();
|
|
await expect(getFileLastUpdate(undefined)).resolves.toBeNull();
|
|
consoleMock.mockRestore();
|
|
});
|
|
|
|
it('temporary created file that is not tracked by git', async () => {
|
|
const consoleMock = jest
|
|
.spyOn(console, 'warn')
|
|
.mockImplementation(() => {});
|
|
const {repoDir} = createTempRepo();
|
|
const tempFilePath = path.join(repoDir, 'file.md');
|
|
await fs.writeFile(tempFilePath, 'Lorem ipsum :)');
|
|
await expect(getFileLastUpdate(tempFilePath)).resolves.toBeNull();
|
|
expect(consoleMock).toHaveBeenCalledTimes(1);
|
|
expect(consoleMock).toHaveBeenLastCalledWith(
|
|
expect.stringMatching(/not tracked by git./),
|
|
);
|
|
await fs.unlink(tempFilePath);
|
|
});
|
|
|
|
it('multiple files not tracked by git', async () => {
|
|
const consoleMock = jest
|
|
.spyOn(console, 'warn')
|
|
.mockImplementation(() => {});
|
|
const {repoDir} = createTempRepo();
|
|
const tempFilePath1 = path.join(repoDir, 'file1.md');
|
|
const tempFilePath2 = path.join(repoDir, 'file2.md');
|
|
await fs.writeFile(tempFilePath1, 'Lorem ipsum :)');
|
|
await fs.writeFile(tempFilePath2, 'Lorem ipsum :)');
|
|
await expect(getFileLastUpdate(tempFilePath1)).resolves.toBeNull();
|
|
await expect(getFileLastUpdate(tempFilePath2)).resolves.toBeNull();
|
|
expect(consoleMock).toHaveBeenCalledTimes(1);
|
|
expect(consoleMock).toHaveBeenLastCalledWith(
|
|
expect.stringMatching(/not tracked by git./),
|
|
);
|
|
await fs.unlink(tempFilePath1);
|
|
await fs.unlink(tempFilePath2);
|
|
});
|
|
|
|
it('git does not exist', async () => {
|
|
const mock = jest.spyOn(shell, 'which').mockImplementationOnce(() => null);
|
|
const consoleMock = jest
|
|
.spyOn(console, 'warn')
|
|
.mockImplementation(() => {});
|
|
const lastUpdateData = await getFileLastUpdate(existingFilePath);
|
|
expect(lastUpdateData).toBeNull();
|
|
expect(consoleMock).toHaveBeenLastCalledWith(
|
|
expect.stringMatching(
|
|
/.*\[WARNING\].* Sorry, the docs plugin last update options require Git\..*/,
|
|
),
|
|
);
|
|
|
|
consoleMock.mockRestore();
|
|
mock.mockRestore();
|
|
});
|
|
});
|