@dxdeveloperexperience/hygie
Version:
Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.
97 lines (84 loc) • 3.44 kB
text/typescript
import { Test, TestingModule } from '@nestjs/testing';
import { GithubService } from '../github/github.service';
import { GitlabService } from '../gitlab/gitlab.service';
import { GitTypeEnum } from '../webhook/utils.enum';
import { CallbackType } from './runnables.service';
import { RuleResult } from '../rules/ruleResult';
import { GitApiInfos } from '../git/gitApiInfos';
import {
MockGitlabService,
MockGithubService,
MockAnalytics,
} from '../__mocks__/mocks';
import { CommentPullRequestRunnable } from './commentPullRequest.runnable';
import { logger } from '../logger/logger.service';
import { EnvVarAccessor } from '../env-var/env-var.accessor';
describe('CommentPullRequestRunnable', () => {
let app: TestingModule;
let githubService: GithubService;
let gitlabService: GitlabService;
let commentPullRequestRunnable: CommentPullRequestRunnable;
let args: any;
let ruleResultPullRequestTitle: RuleResult;
beforeAll(async () => {
app = await Test.createTestingModule({
providers: [
CommentPullRequestRunnable,
{ provide: GitlabService, useClass: MockGitlabService },
{ provide: GithubService, useClass: MockGithubService },
{ provide: 'GoogleAnalytics', useValue: MockAnalytics },
EnvVarAccessor,
],
}).compile();
githubService = app.get(GithubService);
gitlabService = app.get(GitlabService);
commentPullRequestRunnable = app.get(CommentPullRequestRunnable);
const myGitApiInfos = new GitApiInfos();
myGitApiInfos.repositoryFullName = 'bastienterrier/test_webhook';
myGitApiInfos.git = GitTypeEnum.Undefined;
args = { comment: 'ping @bastienterrier' };
// ruleResultPullRequestTitle initialisation
ruleResultPullRequestTitle = new RuleResult(myGitApiInfos);
ruleResultPullRequestTitle.validated = true;
ruleResultPullRequestTitle.data = {
pullRequest: {
title: 'WIP: webhook',
number: 22,
description: 'my desc',
},
};
});
beforeEach(() => {
jest.clearAllMocks();
});
describe('commentPullRequest Runnable', () => {
it('should not call the addPRComment Github nor Gitlab service', () => {
ruleResultPullRequestTitle.gitApiInfos.git = GitTypeEnum.Undefined;
commentPullRequestRunnable
.run(CallbackType.Both, ruleResultPullRequestTitle, args)
.catch(err => logger.error(err));
expect(githubService.addPRComment).not.toBeCalled();
expect(gitlabService.addPRComment).not.toBeCalled();
});
});
describe('commentPullRequest Runnable', () => {
it('should call the addPRComment Githubservice', () => {
ruleResultPullRequestTitle.gitApiInfos.git = GitTypeEnum.Github;
commentPullRequestRunnable
.run(CallbackType.Both, ruleResultPullRequestTitle, args)
.catch(err => logger.error(err));
expect(githubService.addPRComment).toBeCalled();
expect(gitlabService.addPRComment).not.toBeCalled();
});
});
describe('commentPullRequest Runnable', () => {
it('should call the addPRComment Gitlab service', () => {
ruleResultPullRequestTitle.gitApiInfos.git = GitTypeEnum.Gitlab;
commentPullRequestRunnable
.run(CallbackType.Both, ruleResultPullRequestTitle, args)
.catch(err => logger.error(err));
expect(githubService.addPRComment).not.toBeCalled();
expect(gitlabService.addPRComment).toBeCalled();
});
});
});