35 lines
888 B
TypeScript
35 lines
888 B
TypeScript
|
import {Issue} from '../../src/classes/issue';
|
||
|
import {IIssuesProcessorOptions} from '../../src/interfaces/issues-processor-options';
|
||
|
import {IsoDateString} from '../../src/types/iso-date-string';
|
||
|
|
||
|
export function generateIssue(
|
||
|
options: IIssuesProcessorOptions,
|
||
|
id: number,
|
||
|
title: string,
|
||
|
updatedAt: IsoDateString,
|
||
|
createdAt: IsoDateString = updatedAt,
|
||
|
isPullRequest = false,
|
||
|
labels: string[] = [],
|
||
|
isClosed = false,
|
||
|
isLocked = false,
|
||
|
milestone: string | undefined = undefined
|
||
|
): Issue {
|
||
|
return new Issue(options, {
|
||
|
number: id,
|
||
|
labels: labels.map(l => {
|
||
|
return {name: l};
|
||
|
}),
|
||
|
title,
|
||
|
created_at: createdAt,
|
||
|
updated_at: updatedAt,
|
||
|
pull_request: isPullRequest ? {} : null,
|
||
|
state: isClosed ? 'closed' : 'open',
|
||
|
locked: isLocked,
|
||
|
milestone: milestone
|
||
|
? {
|
||
|
title: milestone
|
||
|
}
|
||
|
: undefined
|
||
|
});
|
||
|
}
|