67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { expect } from 'vitest'
|
|
|
|
import { sandboxTest } from '../../setup.js'
|
|
import {
|
|
AUTHOR_EMAIL,
|
|
AUTHOR_NAME,
|
|
cleanupBaseDir,
|
|
createBaseDir,
|
|
createRepo,
|
|
} from './helpers.js'
|
|
|
|
sandboxTest('git commit creates commit', async ({ sandbox }) => {
|
|
const baseDir = await createBaseDir(sandbox)
|
|
|
|
try {
|
|
const repoPath = await createRepo(sandbox, baseDir)
|
|
await sandbox.files.write(`${repoPath}/README.md`, 'hello\n')
|
|
await sandbox.git.add(repoPath)
|
|
|
|
await sandbox.git.commit(repoPath, 'Initial commit', {
|
|
authorName: AUTHOR_NAME,
|
|
authorEmail: AUTHOR_EMAIL,
|
|
})
|
|
|
|
const message = (
|
|
await sandbox.commands.run(`git -C "${repoPath}" log -1 --pretty=%B`)
|
|
).stdout.trim()
|
|
expect(message).toBe('Initial commit')
|
|
} finally {
|
|
await cleanupBaseDir(sandbox, baseDir)
|
|
}
|
|
})
|
|
|
|
sandboxTest(
|
|
'git commit uses config for missing author fields',
|
|
async ({ sandbox }) => {
|
|
const baseDir = await createBaseDir(sandbox)
|
|
|
|
try {
|
|
const repoPath = await createRepo(sandbox, baseDir)
|
|
await sandbox.commands.run(
|
|
`git -C "${repoPath}" config --local user.email "${AUTHOR_EMAIL}"`
|
|
)
|
|
|
|
await sandbox.files.write(`${repoPath}/README.md`, 'hello\n')
|
|
await sandbox.git.add(repoPath)
|
|
|
|
const overrideName = 'Override Bot'
|
|
await sandbox.git.commit(repoPath, 'Partial author commit', {
|
|
authorName: overrideName,
|
|
})
|
|
|
|
const authorName = (
|
|
await sandbox.commands.run(`git -C "${repoPath}" log -1 --pretty=%an`)
|
|
).stdout.trim()
|
|
const authorEmail = (
|
|
await sandbox.commands.run(`git -C "${repoPath}" log -1 --pretty=%ae`)
|
|
).stdout.trim()
|
|
|
|
expect(authorName).toBe(overrideName)
|
|
expect(authorEmail).toBe(AUTHOR_EMAIL)
|
|
} finally {
|
|
await cleanupBaseDir(sandbox, baseDir)
|
|
}
|
|
}
|
|
)
|