mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { SourceControlGitService } from '@/environments/sourceControl/sourceControlGit.service.ee';
|
|
import { mock } from 'jest-mock-extended';
|
|
import type { SourceControlPreferences } from '@/environments/sourceControl/types/sourceControlPreferences';
|
|
import type { User } from '@/databases/entities/User';
|
|
import type { SimpleGit } from 'simple-git';
|
|
|
|
describe('GitService', () => {
|
|
describe('initRepository', () => {
|
|
describe('when local repo is set up after remote is ready', () => {
|
|
it('should track remote', async () => {
|
|
/**
|
|
* Arrange
|
|
*/
|
|
const gitService = new SourceControlGitService(mock(), mock(), mock());
|
|
const prefs = mock<SourceControlPreferences>({ branchName: 'main' });
|
|
const user = mock<User>();
|
|
const git = mock<SimpleGit>();
|
|
const checkoutSpy = jest.spyOn(git, 'checkout');
|
|
const branchSpy = jest.spyOn(git, 'branch');
|
|
gitService.git = git;
|
|
jest.spyOn(gitService, 'setGitSshCommand').mockResolvedValue();
|
|
jest
|
|
.spyOn(gitService, 'getBranches')
|
|
.mockResolvedValue({ currentBranch: '', branches: ['main'] });
|
|
|
|
/**
|
|
* Act
|
|
*/
|
|
await gitService.initRepository(prefs, user);
|
|
|
|
/**
|
|
* Assert
|
|
*/
|
|
expect(checkoutSpy).toHaveBeenCalledWith('main');
|
|
expect(branchSpy).toHaveBeenCalledWith(['--set-upstream-to=origin/main', 'main']);
|
|
});
|
|
});
|
|
});
|
|
});
|