1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-10-22 03:12:43 +02:00
astro-redirect-from/test/utils.test.ts
Lilith River 55269fbf48
Warn on parsing failures; support redirect_from: url (#157)
* Update getRedirects.ts

* Update index.ts

* Update index.ts

Ensure redirect file parent folder is created

* Update index.ts

* Update ci.yml

* Update getRedirects.ts

Fix lints

* Update getRedirects.ts

* Update getRedirects.ts

* Update redirects.test.ts

* Update getRedirects.ts

* Create hello-once.md

* Update redirects.test.ts

* Update utils.test.ts

* Update ci.yml
2024-08-12 12:39:00 +02:00

93 lines
2.7 KiB
TypeScript

import { promises as fs } from 'node:fs'
import { afterAll, describe, expect, it } from 'vitest'
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(5)
})
})
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('/')
})
})