-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(e2e): add end-to-end tests for git push functionality
test(utils): refactor prepareEnvironment to use prepareTempDir function for consistency
- Loading branch information
Showing
2 changed files
with
199 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
import path from 'path'; | ||
import 'cli-testing-library/extend-expect'; | ||
import { exec } from 'child_process'; | ||
import { prepareTempDir } from './utils'; | ||
import { promisify } from 'util'; | ||
import { render } from 'cli-testing-library'; | ||
import { resolve } from 'path'; | ||
import { rm } from 'fs'; | ||
const fsExec = promisify(exec); | ||
const fsRemove = promisify(rm); | ||
|
||
/** | ||
* git remote -v | ||
* | ||
* [no remotes] | ||
*/ | ||
const prepareNoRemoteGitRepository = async (): Promise<{ | ||
gitDir: string; | ||
cleanup: () => Promise<void>; | ||
}> => { | ||
const tempDir = await prepareTempDir(); | ||
await fsExec('git init test', { cwd: tempDir }); | ||
const gitDir = path.resolve(tempDir, 'test'); | ||
|
||
const cleanup = async () => { | ||
return fsRemove(tempDir, { recursive: true }); | ||
}; | ||
return { | ||
gitDir, | ||
cleanup | ||
}; | ||
}; | ||
|
||
/** | ||
* git remote -v | ||
* | ||
* origin /tmp/remote.git (fetch) | ||
* origin /tmp/remote.git (push) | ||
*/ | ||
const prepareOneRemoteGitRepository = async (): Promise<{ | ||
gitDir: string; | ||
cleanup: () => Promise<void>; | ||
}> => { | ||
const tempDir = await prepareTempDir(); | ||
await fsExec('git init --bare remote.git', { cwd: tempDir }); | ||
await fsExec('git clone remote.git test', { cwd: tempDir }); | ||
const gitDir = path.resolve(tempDir, 'test'); | ||
|
||
const cleanup = async () => { | ||
return fsRemove(tempDir, { recursive: true }); | ||
}; | ||
return { | ||
gitDir, | ||
cleanup | ||
}; | ||
}; | ||
|
||
/** | ||
* git remote -v | ||
* | ||
* origin /tmp/remote.git (fetch) | ||
* origin /tmp/remote.git (push) | ||
* other ../remote2.git (fetch) | ||
* other ../remote2.git (push) | ||
*/ | ||
const prepareTwoRemotesGitRepository = async (): Promise<{ | ||
gitDir: string; | ||
cleanup: () => Promise<void>; | ||
}> => { | ||
const tempDir = await prepareTempDir(); | ||
await fsExec('git init --bare remote.git', { cwd: tempDir }); | ||
await fsExec('git init --bare other.git', { cwd: tempDir }); | ||
await fsExec('git clone remote.git test', { cwd: tempDir }); | ||
const gitDir = path.resolve(tempDir, 'test'); | ||
await fsExec('git remote add other ../other.git', { cwd: gitDir }); | ||
|
||
const cleanup = async () => { | ||
return fsRemove(tempDir, { recursive: true }); | ||
}; | ||
return { | ||
gitDir, | ||
cleanup | ||
}; | ||
}; | ||
|
||
it('cli flow to do nothing when no remote', async () => { | ||
const { gitDir, cleanup } = await prepareNoRemoteGitRepository(); | ||
|
||
await render('echo', [`'console.log("Hello World");' > index.ts`], { | ||
cwd: gitDir | ||
}); | ||
await render('git', ['add index.ts'], { cwd: gitDir }); | ||
|
||
const { queryByText, findByText, userEvent } = await render( | ||
`OCO_AI_PROVIDER='test' node`, | ||
[resolve('./out/cli.cjs')], | ||
{ cwd: gitDir } | ||
); | ||
expect(await findByText('Confirm the commit message?')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect( | ||
await queryByText('Choose a remote to push to') | ||
).not.toBeInTheConsole(); | ||
expect( | ||
await queryByText('Do you want to run `git push`?') | ||
).not.toBeInTheConsole(); | ||
expect( | ||
await queryByText('Successfully pushed all commits to origin') | ||
).not.toBeInTheConsole(); | ||
|
||
await cleanup(); | ||
}); | ||
|
||
it('cli flow to do nothing when GIT_PUSH set to false', async () => { | ||
const { gitDir, cleanup } = await prepareOneRemoteGitRepository(); | ||
|
||
await render('echo', [`'console.log("Hello World");' > index.ts`], { | ||
cwd: gitDir | ||
}); | ||
await render('git', ['add index.ts'], { cwd: gitDir }); | ||
|
||
const { queryByText, findByText, userEvent } = await render( | ||
`OCO_AI_PROVIDER='test' OCO_GITPUSH='false' node`, | ||
[resolve('./out/cli.cjs')], | ||
{ cwd: gitDir } | ||
); | ||
expect(await findByText('Confirm the commit message?')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect( | ||
await queryByText('Choose a remote to push to') | ||
).not.toBeInTheConsole(); | ||
expect( | ||
await queryByText('Do you want to run `git push`?') | ||
).not.toBeInTheConsole(); | ||
expect( | ||
await queryByText('Successfully pushed all commits to origin') | ||
).not.toBeInTheConsole(); | ||
|
||
await cleanup(); | ||
}); | ||
|
||
it('cli flow to push git branch when one remote is set', async () => { | ||
const { gitDir, cleanup } = await prepareOneRemoteGitRepository(); | ||
|
||
await render('echo', [`'console.log("Hello World");' > index.ts`], { | ||
cwd: gitDir | ||
}); | ||
await render('git', ['add index.ts'], { cwd: gitDir }); | ||
|
||
const { findByText, userEvent } = await render( | ||
`OCO_AI_PROVIDER='test' node`, | ||
[resolve('./out/cli.cjs')], | ||
{ cwd: gitDir } | ||
); | ||
expect(await findByText('Confirm the commit message?')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect(await findByText('Choose a remote to push to')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect( | ||
await findByText('Successfully pushed all commits to origin') | ||
).toBeInTheConsole(); | ||
|
||
await cleanup(); | ||
}); | ||
|
||
it('cli flow to push git branch when two remotes are set', async () => { | ||
const { gitDir, cleanup } = await prepareTwoRemotesGitRepository(); | ||
|
||
await render('echo', [`'console.log("Hello World");' > index.ts`], { | ||
cwd: gitDir | ||
}); | ||
await render('git', ['add index.ts'], { cwd: gitDir }); | ||
|
||
const { findByText, userEvent } = await render( | ||
`OCO_AI_PROVIDER='test' node`, | ||
[resolve('./out/cli.cjs')], | ||
{ cwd: gitDir } | ||
); | ||
expect(await findByText('Confirm the commit message?')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect(await findByText('Choose a remote to push to')).toBeInTheConsole(); | ||
userEvent.keyboard('[Enter]'); | ||
|
||
expect( | ||
await findByText('Successfully pushed all commits to origin') | ||
).toBeInTheConsole(); | ||
|
||
await cleanup(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters