-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathRepository.test.tsx
92 lines (75 loc) · 2.61 KB
/
Repository.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { fireEvent, render, screen } from '@testing-library/react';
import TestRenderer from 'react-test-renderer';
import { mockedGithubNotifications } from '../__mocks__/mockedData';
import { AppContext } from '../context/App';
import { RepositoryNotifications } from './Repository';
const { shell } = require('electron');
jest.mock('./NotificationRow', () => ({
NotificationRow: () => <div>NotificationRow</div>,
}));
describe('components/Repository.tsx', () => {
const markRepoNotificationsRead = jest.fn();
const markRepoNotificationsDone = jest.fn();
const props = {
hostname: 'github.com',
repoName: 'manosim/gitify',
repoNotifications: mockedGithubNotifications,
};
beforeEach(() => {
markRepoNotificationsRead.mockReset();
jest.spyOn(shell, 'openExternal');
});
it('should render itself & its children', () => {
const tree = TestRenderer.create(
<AppContext.Provider value={{}}>
<RepositoryNotifications {...props} />
</AppContext.Provider>,
);
expect(tree).toMatchSnapshot();
});
it('should open the browser when clicking on the repo name', () => {
render(
<AppContext.Provider value={{}}>
<RepositoryNotifications {...props} />
</AppContext.Provider>,
);
fireEvent.click(screen.getByText(props.repoName));
expect(shell.openExternal).toHaveBeenCalledTimes(1);
expect(shell.openExternal).toHaveBeenCalledWith(
'https://github.com/manosim/notifications-test',
);
});
it('should mark a repo as read', () => {
render(
<AppContext.Provider value={{ markRepoNotificationsRead }}>
<RepositoryNotifications {...props} />
</AppContext.Provider>,
);
fireEvent.click(screen.getByTitle('Mark Repository as Read'));
expect(markRepoNotificationsRead).toHaveBeenCalledWith(
'manosim/notifications-test',
'github.com',
);
});
it('should mark a repo as done', () => {
render(
<AppContext.Provider value={{ markRepoNotificationsDone }}>
<RepositoryNotifications {...props} />
</AppContext.Provider>,
);
fireEvent.click(screen.getByTitle('Mark Repository as Done'));
expect(markRepoNotificationsDone).toHaveBeenCalledWith(
'manosim/notifications-test',
'github.com',
);
});
it('should use default repository icon when avatar is not available', () => {
props.repoNotifications[0].repository.owner.avatar_url = '';
const tree = TestRenderer.create(
<AppContext.Provider value={{}}>
<RepositoryNotifications {...props} />
</AppContext.Provider>,
);
expect(tree).toMatchSnapshot();
});
});