forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-dotcom-markdown.test.js
306 lines (255 loc) · 9.95 KB
/
github-dotcom-markdown.test.js
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import React from 'react';
import {mount} from 'enzyme';
import {shell} from 'electron';
import GithubDotcomMarkdown, {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 RelayEnvironment from '../../lib/views/relay-environment';
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() {
atom.workspace = {open: () => {}};
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').callsFake(() => {});
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').throws(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);
});
});
describe('the Relay context wrapper', function() {
function Wrapper(props) {
return (
<RelayEnvironment.Provider value={relayEnvironment}>
<GithubDotcomMarkdown
switchToIssueish={() => {}}
{...props}
/>
</RelayEnvironment.Provider>
);
}
it('renders markdown', function() {
const wrapper = mount(
<Wrapper markdown="[link text](https://github.com)" />,
);
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<a href="https://github.com">link text</a>');
});
it('only re-renders when the markdown source changes', function() {
const wrapper = mount(
<Wrapper markdown="# Zero" />,
);
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<h1 id="zero">Zero</h1>');
wrapper.setProps({markdown: '# Zero'});
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<h1 id="zero">Zero</h1>');
wrapper.setProps({markdown: '# One'});
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<h1 id="one">One</h1>');
});
it('sanitizes malicious markup', function() {
const wrapper = mount(
<Wrapper markdown="<img src=x onerror=alert(1)>" />,
);
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<img src="x">');
});
it('prefers directly provided HTML', function() {
const wrapper = mount(
<Wrapper
markdown="# From markdown"
html="<h1>As HTML</h1>"
/>,
);
assert.include(wrapper.find('.github-DotComMarkdownHtml').html(), '<h1>As HTML</h1>');
});
});
});