|
| 1 | +import {Issue} from '../src/classes/issue'; |
| 2 | +import {IIssue} from '../src/interfaces/issue'; |
| 3 | +import {IIssuesProcessorOptions} from '../src/interfaces/issues-processor-options'; |
| 4 | +import {IPullRequest} from '../src/interfaces/pull-request'; |
| 5 | +import {IssuesProcessorMock} from './classes/issues-processor-mock'; |
| 6 | +import {DefaultProcessorOptions} from './constants/default-processor-options'; |
| 7 | +import {generateIssue} from './functions/generate-issue'; |
| 8 | + |
| 9 | +let issuesProcessorBuilder: IssuesProcessorBuilder; |
| 10 | +let issuesProcessor: IssuesProcessorMock; |
| 11 | + |
| 12 | +describe('exempt-draft-pr option', (): void => { |
| 13 | + beforeEach((): void => { |
| 14 | + issuesProcessorBuilder = new IssuesProcessorBuilder(); |
| 15 | + }); |
| 16 | + |
| 17 | + describe('when the option "exempt-draft-pr" is disabled', (): void => { |
| 18 | + beforeEach((): void => { |
| 19 | + issuesProcessorBuilder.processDraftPr(); |
| 20 | + }); |
| 21 | + |
| 22 | + test('should stale the pull request', async (): Promise<void> => { |
| 23 | + expect.assertions(1); |
| 24 | + issuesProcessor = issuesProcessorBuilder |
| 25 | + .toStalePrs([ |
| 26 | + { |
| 27 | + number: 10 |
| 28 | + } |
| 29 | + ]) |
| 30 | + .build(); |
| 31 | + |
| 32 | + await issuesProcessor.processIssues(); |
| 33 | + |
| 34 | + expect(issuesProcessor.staleIssues).toHaveLength(1); |
| 35 | + }); |
| 36 | + }); |
| 37 | + |
| 38 | + describe('when the option "exempt-draft-pr" is enabled', (): void => { |
| 39 | + beforeEach((): void => { |
| 40 | + issuesProcessorBuilder.exemptDraftPr(); |
| 41 | + }); |
| 42 | + |
| 43 | + test('should not stale the pull request', async (): Promise<void> => { |
| 44 | + expect.assertions(1); |
| 45 | + issuesProcessor = issuesProcessorBuilder |
| 46 | + .toStalePrs([ |
| 47 | + { |
| 48 | + number: 20 |
| 49 | + } |
| 50 | + ]) |
| 51 | + .build(); |
| 52 | + |
| 53 | + await issuesProcessor.processIssues(); |
| 54 | + |
| 55 | + expect(issuesProcessor.staleIssues).toHaveLength(0); |
| 56 | + }); |
| 57 | + }); |
| 58 | +}); |
| 59 | + |
| 60 | +class IssuesProcessorBuilder { |
| 61 | + private _options: IIssuesProcessorOptions = { |
| 62 | + ...DefaultProcessorOptions |
| 63 | + }; |
| 64 | + private _issues: Issue[] = []; |
| 65 | + |
| 66 | + processDraftPr(): IssuesProcessorBuilder { |
| 67 | + this._options.exemptDraftPr = false; |
| 68 | + |
| 69 | + return this; |
| 70 | + } |
| 71 | + |
| 72 | + exemptDraftPr(): IssuesProcessorBuilder { |
| 73 | + this._options.exemptDraftPr = true; |
| 74 | + |
| 75 | + return this; |
| 76 | + } |
| 77 | + |
| 78 | + issuesOrPrs(issues: Partial<IIssue>[]): IssuesProcessorBuilder { |
| 79 | + this._issues = issues.map( |
| 80 | + (issue: Readonly<Partial<IIssue>>, index: Readonly<number>): Issue => |
| 81 | + generateIssue( |
| 82 | + this._options, |
| 83 | + issue.number ?? index, |
| 84 | + issue.title ?? 'dummy-title', |
| 85 | + issue.updated_at ?? new Date().toDateString(), |
| 86 | + issue.created_at ?? new Date().toDateString(), |
| 87 | + !!issue.pull_request, |
| 88 | + issue.labels ? issue.labels.map(label => label.name) : [] |
| 89 | + ) |
| 90 | + ); |
| 91 | + |
| 92 | + return this; |
| 93 | + } |
| 94 | + |
| 95 | + prs(issues: Partial<IIssue>[]): IssuesProcessorBuilder { |
| 96 | + this.issuesOrPrs( |
| 97 | + issues.map((issue: Readonly<Partial<IIssue>>): Partial<IIssue> => { |
| 98 | + return { |
| 99 | + ...issue, |
| 100 | + pull_request: {key: 'value'} |
| 101 | + }; |
| 102 | + }) |
| 103 | + ); |
| 104 | + |
| 105 | + return this; |
| 106 | + } |
| 107 | + |
| 108 | + toStalePrs(issues: Partial<IIssue>[]): IssuesProcessorBuilder { |
| 109 | + this.prs( |
| 110 | + issues.map((issue: Readonly<Partial<IIssue>>): Partial<IIssue> => { |
| 111 | + return { |
| 112 | + ...issue, |
| 113 | + updated_at: '2020-01-01T17:00:00Z', |
| 114 | + created_at: '2020-01-01T17:00:00Z' |
| 115 | + }; |
| 116 | + }) |
| 117 | + ); |
| 118 | + |
| 119 | + return this; |
| 120 | + } |
| 121 | + |
| 122 | + build(): IssuesProcessorMock { |
| 123 | + return new IssuesProcessorMock( |
| 124 | + this._options, |
| 125 | + async p => (p === 1 ? this._issues : []), |
| 126 | + async () => [], |
| 127 | + async () => new Date().toDateString(), |
| 128 | + async (): Promise<IPullRequest> => { |
| 129 | + return Promise.resolve({ |
| 130 | + number: 0, |
| 131 | + draft: true, |
| 132 | + head: { |
| 133 | + ref: 'ref' |
| 134 | + } |
| 135 | + }); |
| 136 | + } |
| 137 | + ); |
| 138 | + } |
| 139 | +} |
0 commit comments