forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-dotcom-markdown.test.js
More file actions
253 lines (210 loc) · 8.17 KB
/
github-dotcom-markdown.test.js
File metadata and controls
253 lines (210 loc) · 8.17 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import React from 'react';
import {mount} from 'enzyme';
import {shell} from 'electron';
import {BareGithubDotcomMarkdown} from '../../lib/views/github-dotcom-markdown';
import {handleClickEvent, openIssueishLinkInNewTab, openLinkInBrowser} from '../../lib/views/issueish-link';
import {getEndpoint} from '../../lib/models/endpoint';
import RelayNetworkLayerManager from '../../lib/relay-network-layer-manager';
import * as reporterProxy from '../../lib/reporter-proxy';
describe('GithubDotcomMarkdown', function() {
let relayEnvironment;
beforeEach(function() {
const endpoint = getEndpoint('somehost.com');
relayEnvironment = RelayNetworkLayerManager.getEnvironmentForHost(endpoint, '1234');
});
function buildApp(overloadProps = {}) {
return (
<BareGithubDotcomMarkdown
relayEnvironment={relayEnvironment}
html={'<p>content</p>'}
switchToIssueish={() => {}}
handleClickEvent={() => {}}
openIssueishLinkInNewTab={() => {}}
openLinkInBrowser={() => {}}
{...overloadProps}
/>
);
}
it('embeds pre-rendered markdown into a div', function() {
const wrapper = mount(buildApp({
html: '<pre class="yes">something</pre>',
}));
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<pre class="yes">something</pre>');
});
it('intercepts click events on issueish links', function() {
const handleClickEventStub = sinon.stub();
const wrapper = mount(buildApp({
html: `
<p>
This text has
<a
class="issue-link"
data-url="https://github.com/aaa/bbb/issue/123"
href="https://github.com/aaa/bbb/issue/123">
an issueish link
</a>
and
<a class="other" href="https://example.com">
a non-issuish link
</a>
and
<a class="user-mention" href="https://example.com">
a user mention
</a>
in it
</p>
`,
handleClickEvent: handleClickEventStub,
}));
const issueishLink = wrapper.getDOMNode().querySelector('a.issue-link');
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
}));
assert.strictEqual(handleClickEventStub.callCount, 1);
const nonIssueishLink = wrapper.getDOMNode().querySelector('a.other');
nonIssueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
}));
assert.strictEqual(handleClickEventStub.callCount, 1);
// Force a componentDidUpdate to exercise tooltip handler re-registration
wrapper.setProps({});
// Unmount to unsubscribe
wrapper.unmount();
});
it('registers command handlers', function() {
const openIssueishLinkInNewTabStub = sinon.stub();
const openLinkInBrowserStub = sinon.stub();
const switchToIssueishStub = sinon.stub();
const wrapper = mount(buildApp({
html: `
<p>
<a data-url="https://github.com/aaa/bbb/issue/123" href="https://github.com/aaa/bbb/issue/123">#123</a>
</p>
`,
openIssueishLinkInNewTab: openIssueishLinkInNewTabStub,
openLinkInBrowser: openLinkInBrowserStub,
switchToIssueish: switchToIssueishStub,
}));
const link = wrapper.getDOMNode().querySelector('a');
const href = 'https://github.com/aaa/bbb/issue/123';
atom.commands.dispatch(link, 'github:open-link-in-new-tab');
assert.isTrue(openIssueishLinkInNewTabStub.calledWith(href));
atom.commands.dispatch(link, 'github:open-link-in-this-tab');
assert.isTrue(switchToIssueishStub.calledWith('aaa', 'bbb', 123));
atom.commands.dispatch(link, 'github:open-link-in-browser');
assert.isTrue(openLinkInBrowserStub.calledWith(href));
});
describe('opening issueish links', function() {
let wrapper;
beforeEach(function() {
wrapper = mount(buildApp({
html: `
<p>
<a
class="issue-link"
data-url="https://github.com/aaa/bbb/issues/123"
href="https://github.com/aaa/bbb/issues/123">
an issueish link
</a>
</p>
`,
handleClickEvent,
openIssueishLinkInNewTab,
openLinkInBrowser,
}));
});
it('opens item in pane and activates accordingly', async function() {
sinon.stub(atom.workspace, 'open').returns(Promise.resolve());
const issueishLink = wrapper.getDOMNode().querySelector('a.issue-link');
// regular click opens item and activates it
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
}));
await assert.async.isTrue(atom.workspace.open.called);
assert.deepEqual(atom.workspace.open.lastCall.args[1], {activateItem: true});
// holding down meta key simply opens item
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
metaKey: true,
}));
await assert.async.isTrue(atom.workspace.open.calledTwice);
assert.deepEqual(atom.workspace.open.lastCall.args[1], {activateItem: false});
});
it('records event for opening issueish in pane item', async function() {
sinon.stub(atom.workspace, 'open').returns(Promise.resolve());
sinon.stub(reporterProxy, 'addEvent');
const issueishLink = wrapper.getDOMNode().querySelector('a.issue-link');
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
}));
await assert.async.isTrue(reporterProxy.addEvent.calledWith('open-issueish-in-pane', {package: 'github', from: 'issueish-link', target: 'new-tab'}));
});
it('does not record event if opening issueish in pane item fails', function() {
sinon.stub(atom.workspace, 'open').returns(Promise.reject());
sinon.stub(reporterProxy, 'addEvent');
// calling `handleClick` directly rather than dispatching event so that we can catch the error thrown and prevent errors in the console
assert.isRejected(
wrapper.instance().handleClick({
bubbles: true,
cancelable: true,
target: {
dataset: {
url: 'https://github.com/aaa/bbb/issues/123',
},
},
preventDefault: () => {},
stopPropagation: () => {},
}),
);
assert.isTrue(atom.workspace.open.called);
assert.isFalse(reporterProxy.addEvent.called);
});
it('opens item in browser if shift key is pressed', function() {
sinon.stub(shell, 'openExternal').callsArg(2);
const issueishLink = wrapper.getDOMNode().querySelector('a.issue-link');
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
shiftKey: true,
}));
assert.isTrue(shell.openExternal.called);
});
it('records event for opening issueish in browser', async function() {
sinon.stub(shell, 'openExternal').callsArg(2);
sinon.stub(reporterProxy, 'addEvent');
const issueishLink = wrapper.getDOMNode().querySelector('a.issue-link');
issueishLink.dispatchEvent(new MouseEvent('click', {
bubbles: true,
cancelable: true,
shiftKey: true,
}));
await assert.async.isTrue(reporterProxy.addEvent.calledWith('open-issueish-in-browser', {package: 'github', from: 'issueish-link'}));
});
it('does not record event if opening issueish in browser fails', function() {
sinon.stub(shell, 'openExternal').callsArgWith(2, new Error('oh noes'));
sinon.stub(reporterProxy, 'addEvent');
// calling `handleClick` directly rather than dispatching event so that we can catch the error thrown and prevent errors in the console
assert.isRejected(
wrapper.instance().handleClick({
bubbles: true,
cancelable: true,
shiftKey: true,
target: {
dataset: {
url: 'https://github.com/aaa/bbb/issues/123',
},
},
preventDefault: () => {},
stopPropagation: () => {},
}),
);
assert.isTrue(shell.openExternal.called);
assert.isFalse(reporterProxy.addEvent.called);
});
});
});