Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 49 additions & 14 deletions src/utils/helpers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
mockPersonalAccessTokenAccount,
} from '../__mocks__/state-mocks';

import log from 'electron-log';
import { defaultSettings } from '../context/App';
import type { Hostname, Link, SettingsState } from '../types';
import type { SubjectType } from '../typesGitHub';
Expand Down Expand Up @@ -505,23 +506,57 @@ describe('utils/helpers.ts', () => {
});
});

it('defaults to repository url', async () => {
const subject = {
title: 'generate github web url unit tests',
url: null,
latest_comment_url: null,
type: 'Issue' as SubjectType,
};
describe('defaults to repository url', () => {
it('defaults when no urls present in notification', async () => {
const subject = {
title: 'generate github web url unit tests',
url: null,
latest_comment_url: null,
type: 'Issue' as SubjectType,
};

const result = await generateGitHubWebUrl({
...mockSingleNotification,
subject: subject,
const result = await generateGitHubWebUrl({
...mockSingleNotification,
subject: subject,
});

expect(apiRequestAuthMock).toHaveBeenCalledTimes(0);
expect(result).toBe(
`${mockSingleNotification.repository.html_url}?${mockNotificationReferrer}`,
);
});

expect(apiRequestAuthMock).toHaveBeenCalledTimes(0);
expect(result).toBe(
`${mockSingleNotification.repository.html_url}?${mockNotificationReferrer}`,
);
it('defaults when exception handled during specialized html enrichment process', async () => {
const logErrorSpy = jest.spyOn(log, 'error').mockImplementation();

const subject = {
title: 'generate github web url unit tests',
url: 'https://api.github.com/repos/gitify-app/notifications-test/issues/1' as Link,
latest_comment_url:
'https://api.github.com/repos/gitify-app/notifications-test/issues/comments/302888448' as Link,
type: 'Issue' as SubjectType,
};

const mockError = new Error('Test error');

apiRequestAuthMock.mockRejectedValue(mockError);

const result = await generateGitHubWebUrl({
...mockSingleNotification,
subject: subject,
});

expect(apiRequestAuthMock).toHaveBeenCalledTimes(1);
expect(apiRequestAuthMock).toHaveBeenCalledWith(
subject.latest_comment_url,
'GET',
mockPersonalAccessTokenAccount.token,
);
expect(result).toBe(
`https://github.com/gitify-app/notifications-test?${mockNotificationReferrer}`,
);
expect(logErrorSpy).toHaveBeenCalledTimes(2);
});
});
});

Expand Down
68 changes: 38 additions & 30 deletions src/utils/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { formatDistanceToNowStrict, parseISO } from 'date-fns';
import log from 'electron-log';
import { defaultSettings } from '../context/App';
import type { Account, Hostname, Link, SettingsState } from '../types';
import type { Notification } from '../typesGitHub';
Expand Down Expand Up @@ -117,37 +118,44 @@ export async function generateGitHubWebUrl(
): Promise<Link> {
const url = new URL(notification.repository.html_url);

if (notification.subject.latest_comment_url) {
url.href = await getHtmlUrl(
notification.subject.latest_comment_url,
notification.account.token,
);
} else if (notification.subject.url) {
url.href = await getHtmlUrl(
notification.subject.url,
notification.account.token,
);
} else {
// Perform any specific notification type handling (only required for a few special notification scenarios)
switch (notification.subject.type) {
case 'CheckSuite':
url.href = getCheckSuiteUrl(notification);
break;
case 'Discussion':
url.href = await getDiscussionUrl(notification);
break;
case 'RepositoryInvitation':
url.pathname += '/invitations';
break;
case 'RepositoryDependabotAlertsThread':
url.pathname += '/security/dependabot';
break;
case 'WorkflowRun':
url.href = getWorkflowRunUrl(notification);
break;
default:
break;
try {
if (notification.subject.latest_comment_url) {
url.href = await getHtmlUrl(
notification.subject.latest_comment_url,
notification.account.token,
);
} else if (notification.subject.url) {
url.href = await getHtmlUrl(
notification.subject.url,
notification.account.token,
);
} else {
// Perform any specific notification type handling (only required for a few special notification scenarios)
switch (notification.subject.type) {
case 'CheckSuite':
url.href = getCheckSuiteUrl(notification);
break;
case 'Discussion':
url.href = await getDiscussionUrl(notification);
break;
case 'RepositoryInvitation':
url.pathname += '/invitations';
break;
case 'RepositoryDependabotAlertsThread':
url.pathname += '/security/dependabot';
break;
case 'WorkflowRun':
url.href = getWorkflowRunUrl(notification);
break;
default:
break;
}
}
} catch (err) {
log.error(
'Error occurred while attempting to get a specific notification URL. Will fall back to defaults',
err,
);
}

url.searchParams.set(
Expand Down