mirror of
https://github.com/kremalicious/astro-redirect-from.git
synced 2024-11-22 01:47:01 +01:00
93 lines
2.7 KiB
TypeScript
93 lines
2.7 KiB
TypeScript
import { expect, describe, it, afterAll } from 'vitest'
|
|
import { promises as fs } from 'node:fs'
|
|
import {
|
|
getMarkdownFiles,
|
|
getMarkdownFrontmatter,
|
|
getSlugFromFilePath,
|
|
prependForwardSlash,
|
|
writeJson
|
|
} from '../src/utils'
|
|
|
|
describe('getMarkdownFiles', () => {
|
|
it('should return an array of markdown files from the given directory', async () => {
|
|
const files = await getMarkdownFiles('./test/__fixtures__/markdown')
|
|
expect(files).toBeInstanceOf(Array)
|
|
expect(files).toHaveLength(4)
|
|
})
|
|
})
|
|
|
|
describe('getMarkdownFrontmatter', () => {
|
|
it('should extract frontmatter from a markdown file', async () => {
|
|
const frontmatter = await getMarkdownFrontmatter(
|
|
'./test/__fixtures__/markdown/hello-draft.md'
|
|
)
|
|
expect(frontmatter).toBeInstanceOf(Object)
|
|
expect(frontmatter.redirect_from).toBeDefined()
|
|
})
|
|
})
|
|
|
|
describe('getSlugFromFilePath', () => {
|
|
it('should return slug for testDir/testFile.md', () => {
|
|
const slug = getSlugFromFilePath('testDir/testFile.md')
|
|
expect(slug).toBe('testDir/testFile')
|
|
})
|
|
|
|
it('should return slug for dir/testDir/index.md', () => {
|
|
const slug = getSlugFromFilePath('dir/testDir/index.md')
|
|
expect(slug).toBe('dir/testDir')
|
|
})
|
|
|
|
it('should return slug for dir/dir2/testDir/index.md', () => {
|
|
const slug = getSlugFromFilePath('dir/dir2/testDir/index.md')
|
|
expect(slug).toBe('dir/dir2/testDir')
|
|
})
|
|
})
|
|
|
|
describe('writeJson', () => {
|
|
const testFilePath = './test/test.json'
|
|
|
|
afterAll(async () => {
|
|
try {
|
|
await fs.unlink(testFilePath)
|
|
} catch (error) {
|
|
return
|
|
}
|
|
})
|
|
|
|
it('should write data to a JSON file and verify its content', async () => {
|
|
const testData = { key: 'value' }
|
|
|
|
await writeJson(testFilePath, testData)
|
|
|
|
const fileContent = await fs.readFile(testFilePath, { encoding: 'utf-8' })
|
|
const parsedContent = JSON.parse(fileContent)
|
|
expect(parsedContent).toEqual(testData)
|
|
})
|
|
})
|
|
|
|
describe('prependForwardSlash', () => {
|
|
it('should prepend a forward slash if it does not start with one', () => {
|
|
const stringWithSlash = '/alreadyHasSlash'
|
|
const result1 = prependForwardSlash(stringWithSlash)
|
|
expect(result1).toBe('/alreadyHasSlash')
|
|
})
|
|
|
|
it('should prepend a forward slash', () => {
|
|
const stringWithoutSlash = 'noSlashAtStart'
|
|
const result2 = prependForwardSlash(stringWithoutSlash)
|
|
expect(result2).toBe('/noSlashAtStart')
|
|
})
|
|
|
|
it('should return a single forward slash if the input string is empty', () => {
|
|
const emptyString = ''
|
|
const result3 = prependForwardSlash(emptyString)
|
|
expect(result3).toBe('/')
|
|
})
|
|
|
|
it('should return a single forward slash if a slash is passed', () => {
|
|
const string = '/'
|
|
const result4 = prependForwardSlash(string)
|
|
expect(result4).toBe('/')
|
|
})
|
|
})
|