-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmarkdown-test.gts
331 lines (265 loc) · 8.75 KB
/
markdown-test.gts
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
import { assert as debugAssert } from '@ember/debug';
import { render, setupOnerror } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { stripIndent } from 'common-tags';
import { compile } from 'ember-repl';
import { CACHE } from 'ember-repl/__PRIVATE__DO_NOT_USE__';
import { type Plugin } from 'unified';
import { visit } from 'unist-util-visit';
import type { ComponentLike } from '@glint/template';
import type { Parent } from 'unist';
export type UnifiedPlugin = Plugin; // Parameters<ReturnType<(typeof unified)>['use']>[0];
type Build = (plugin?: UnifiedPlugin) => Promise<void>;
module('Rendering | compile()', function (hooks) {
setupRenderingTest(hooks);
module('markdown features', function () {
test('tables', async function (assert) {
setupOnerror(() => {
assert.notOk('This should not error');
});
let snippet = stripIndent`
| Color | Food |
| ---- | ---- |
| red | apple |
| yellow| banana |
`;
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: () => assert.notOk('did not expect error'),
onCompileStart: () => {
/* not used */
},
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom('table').exists();
assert.dom('td').containsText('red');
});
test('footnotes', async function (assert) {
setupOnerror(() => {
assert.notOk('This should not error');
});
let snippet = stripIndent`
text[^note]
[^note]: a note about a thing
`;
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: () => assert.notOk('did not expect error'),
onCompileStart: () => {
/* not used */
},
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom('sup').exists();
assert.dom('a').exists({ count: 2 }); // to and from the footnote
});
module('custom remark plugins', function () {
module('demo: remove pre code', function (hooks) {
let build: Build;
let component: ComponentLike | undefined;
let snippet = stripIndent`
text
\`\`\`js
const two = 2;
\`\`\`
`;
/**
* Test plugin that just turns code into an
* unformatted mess in a p tag
*/
const uncodeSnippet: UnifiedPlugin = (/* options */) => {
return function transformer(tree) {
visit(tree, ['code'], function (node, index, parent: Parent) {
if (!parent) return;
if (undefined === index) return;
parent.children[index] = {
type: 'html',
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
value: `<p>${node.value}</p>`,
};
});
};
};
hooks.beforeEach(function (assert) {
CACHE.clear();
component = undefined;
build = async function build(plugin?: UnifiedPlugin) {
if (plugin) {
return await compile(snippet, {
format: 'glimdown',
remarkPlugins: [plugin],
onSuccess: (comp) => (component = comp),
onError: (e) => assert.notOk('did not expect error. ' + e),
onCompileStart: () => {
/* not used */
},
});
}
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: (e) => assert.notOk('did not expect error. ' + e),
onCompileStart: () => {
/* not used */
},
});
};
});
// https://github.com/typed-ember/glint/issues/617
test('baseline: without the plugin, pre renders', async function (assert) {
debugAssert(`[BUG]`, build);
await build();
debugAssert(`[BUG]`, component);
await render(component);
assert.dom('pre').exists();
});
// https://github.com/typed-ember/glint/issues/617
test('with the plugin: no pre renders', async function (assert) {
debugAssert(`[BUG]`, build);
await build(uncodeSnippet);
debugAssert(`[BUG] component`, component);
await render(component);
// await this.pauseTest();
assert.dom('pre').doesNotExist();
});
});
});
});
module('passing options', function () {
test('adding to top-level scope', async function (assert) {
const text = `This is a local component added to topLevelScope`;
const LocalComponent = <template>{{text}}</template>;
setupOnerror(() => {
assert.notOk('This should not error');
});
let snippet = stripIndent`
<LocalComponent />
`;
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: () => assert.notOk('did not expect error'),
onCompileStart: () => {
/* not used */
},
topLevelScope: {
LocalComponent,
},
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom().hasText(text);
});
test('adding to top-level scope applies to rendered "hbs" codefences', async function (assert) {
const text = `This is a local component added to topLevelScope`;
const LocalComponent = <template>{{text}}</template>;
setupOnerror((e) => {
console.error(e);
assert.notOk('This should not error');
});
let snippet = stripIndent`
Using a live hbs tag is how we can syntax highlighting
\`\`\`hbs live
<LocalComponent />
\`\`\`
`;
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: (e) => {
console.error(e);
assert.notOk('did not expect error');
},
onCompileStart: () => {
/* not used */
},
topLevelScope: {
LocalComponent,
},
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom().containsText(text);
});
test('adding a remark plugin', async function (assert) {
setupOnerror((e) => {
console.error(e);
assert.notOk('This should not error');
});
let snippet = '# Hello';
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: (e) => {
console.error(e);
assert.notOk('did not expect error');
},
onCompileStart: () => {
/* not used */
},
remarkPlugins: [
function noH1(/* options */) {
return (tree) => {
return visit(tree, ['heading'], function (node) {
if (!('depth' in node)) return;
if (node.depth === 1) {
node.depth = 2;
}
return 'skip';
});
};
},
],
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom('h2').containsText('Hello');
});
test('adding a rehype plugin', async function (assert) {
setupOnerror((e) => {
console.error(e);
assert.notOk('This should not error');
});
let snippet = '# Hello';
let component: ComponentLike | undefined;
await compile(snippet, {
format: 'glimdown',
onSuccess: (comp) => (component = comp),
onError: (e) => {
console.error(e);
assert.notOk('did not expect error');
},
onCompileStart: () => {
/* not used */
},
rehypePlugins: [
function noH1(/* options */) {
return (tree) => {
return visit(tree, ['element'], function (node) {
if (!('tagName' in node)) return;
if (node.tagName === 'h1') {
node.tagName = 'h2';
}
return 'skip';
});
};
},
],
});
debugAssert(`[BUG]`, component);
await render(component);
assert.dom('h2').containsText('Hello');
});
});
});