123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import t from 'tap';
- import {testContentFunctions} from '#test-lib';
- testContentFunctions(t, 'transformContent (snapshot)', async (t, evaluate) => {
- await evaluate.load({
- mock: {
- image: evaluate.stubContentFunction('image'),
- },
- });
- const extraDependencies = {
- wikiData: {
- albumData: [
- {directory: 'cool-album', name: 'Cool Album', color: '#123456'},
- ],
- },
- to: (key, ...args) => `to-${key}/${args.join('/')}`,
- };
- const quickSnapshot = (message, content, slots) =>
- evaluate.snapshot(message, {
- name: 'transformContent',
- args: [content],
- extraDependencies,
- slots,
- });
- quickSnapshot(
- 'two text paragraphs',
- `Hello, world!\n` +
- `Wow, this is very cool.`);
- quickSnapshot(
- 'links to a thing',
- `This is [[album:cool-album|my favorite album]].\n` +
- `That's right, [[album:cool-album]]!`);
- quickSnapshot(
- 'inline images',
- `<img src="snooping.png"> as USUAL...\n` +
- `What do you know? <img src="cowabunga.png" width="24" height="32">\n` +
- `[[album:cool-album|I'm on the left.]]<img src="im-on-the-right.jpg">\n` +
- `<img src="im-on-the-left.jpg">[[album:cool-album|I'm on the right.]]\n` +
- `Media time! <img src="media/misc/interesting.png"> Oh yeah!\n` +
- `<img src="must.png"><img src="stick.png"><img src="together.png">\n` +
- `And... all done! <img src="end-of-source.png">`);
- quickSnapshot(
- 'non-inline image #1',
- `<img src="spark.png">`);
- quickSnapshot(
- 'non-inline image #2',
- `Rad.\n` +
- `<img src="spark.png">`);
- quickSnapshot(
- 'non-inline image #3',
- `<img src="spark.png">\n` +
- `Baller.`);
- quickSnapshot(
- 'dates',
- `[[date:2023-04-13]] Yep!\n` +
- `Very nice: [[date:25 October 2413]]`);
- quickSnapshot(
- 'super basic string',
- `Neat listing: [[string:listingPage.listAlbums.byDate.title]]`);
- quickSnapshot(
- 'lyrics - basic line breaks',
- `Hey, ho\n` +
- `And away we go\n` +
- `Truly, music\n` +
- `\n` +
- `(Oh yeah)\n` +
- `(That's right)`,
- {mode: 'lyrics'});
- quickSnapshot(
- 'lyrics - repeated and edge line breaks',
- `\n\nWell, you know\nHow it goes\n\n\nYessiree\n\n\n`,
- {mode: 'lyrics'});
- quickSnapshot(
- 'lyrics - line breaks around tags',
- `The date be [[date:13 April 2004]]\n` +
- `I say, the date be [[date:13 April 2004]]\n` +
- `[[date:13 April 2004]]\n` +
- `[[date:13 April 2004]][[date:13 April 2004]][[date:13 April 2004]]\n` +
- `(Aye!)\n` +
- `\n` +
- `[[date:13 April 2004]]\n` +
- `[[date:13 April 2004]][[date:13 April 2004]]\n` +
- `[[date:13 April 2004]]\n` +
- `\n` +
- `[[date:13 April 2004]]\n` +
- `[[date:13 April 2004]], and don't ye forget it`,
- {mode: 'lyrics'});
- // TODO: Snapshots for mode: inline
- // TODO: Snapshots for mode: single-link
- });
|