From 543d087fc465ea56ec0b156d488119c3a64c55aa Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Wed, 29 Mar 2023 09:47:30 -0300 Subject: content: iconifyURL (extra) -> generateIconForURL --- .../dependencies/generateContributionLinks.js | 93 ++++++++++------------ 1 file changed, 40 insertions(+), 53 deletions(-) (limited to 'test/unit/content') diff --git a/test/unit/content/dependencies/generateContributionLinks.js b/test/unit/content/dependencies/generateContributionLinks.js index a0bb64ec..5ed8f782 100644 --- a/test/unit/content/dependencies/generateContributionLinks.js +++ b/test/unit/content/dependencies/generateContributionLinks.js @@ -2,28 +2,28 @@ import t from 'tap'; import {testContentFunctions} from '../../../lib/content-function.js'; t.test('generateContributionLinks (unit)', async t => { - await testContentFunctions(t, 'generateContributionLinks (unit 1)', async (t, evaluate) => { - const artist1 = { - name: 'Clark Powell', - urls: ['https://soundcloud.com/plazmataz'], - }; - - const artist2 = { - name: 'Grounder & Scratch', - urls: [], - }; - - const artist3 = { - name: 'Toby Fox', - urls: ['https://tobyfox.bandcamp.com/', 'https://toby.fox/'], - }; - - const contributions = [ - {who: artist1, what: null}, - {who: artist2, what: 'Snooping'}, - {who: artist3, what: 'Arrangement'}, - ]; + const artist1 = { + name: 'Clark Powell', + urls: ['https://soundcloud.com/plazmataz'], + }; + + const artist2 = { + name: 'Grounder & Scratch', + urls: [], + }; + + const artist3 = { + name: 'Toby Fox', + urls: ['https://tobyfox.bandcamp.com/', 'https://toby.fox/'], + }; + + const contributions = [ + {who: artist1, what: null}, + {who: artist2, what: 'Snooping'}, + {who: artist3, what: 'Arrangement'}, + ]; + await testContentFunctions(t, 'generateContributionLinks (unit 1)', async (t, evaluate) => { const config = { showContribution: true, showIcons: true, @@ -44,46 +44,29 @@ t.test('generateContributionLinks (unit)', async t => { // This can be tweaked to return a specific (mocked) template // for each artist if we need to test for slots in the future. - generate: mock.function(() => 'artist link') + generate: mock.function('linkArtist.generate', () => 'artist link') .repeat(3), }, + + generateIconForURL: { + data: mock.function('generateIconForURL.data', () => ({})) + .args([artist1.urls[0]]).next() + .args([artist3.urls[0]]).next() + .args([artist3.urls[1]]), + + generate: mock.function('generateIconForURL.generate', () => 'icon') + .repeat(3), + } })), }); evaluate({ name: 'generateContributionLinks', args: [contributions, config], - extraDependencies: evaluate.mock(mock => ({ - iconifyURL: mock.function(() => 'icon') - .args([artist1.urls[0], undefined]).next() - .args([artist3.urls[0], undefined]).next() - .args([artist3.urls[1], undefined]), - })), }); }); await testContentFunctions(t, 'generateContributionLinks (unit 2)', async (t, evaluate) => { - const artist1 = { - name: 'Clark Powell', - urls: ['https://soundcloud.com/plazmataz'], - }; - - const artist2 = { - name: 'Grounder & Scratch', - urls: [], - }; - - const artist3 = { - name: 'Toby Fox', - urls: ['https://tobyfox.bandcamp.com/', 'https://toby.fox/'], - }; - - const contributions = [ - {who: artist1, what: null}, - {who: artist2, what: 'Snooping'}, - {who: artist3, what: 'Arrangement'}, - ]; - const config = { showContribution: false, showIcons: false, @@ -105,16 +88,20 @@ t.test('generateContributionLinks (unit)', async t => { generate: mock.function(() => 'artist link') .repeat(3), }, + + generateIconForURL: { + data: mock.function('generateIconForURL.data', () => ({})) + .neverCalled(), + + generate: mock.function('generateIconForURL.generate', () => 'icon') + .neverCalled(), + }, })), }); evaluate({ name: 'generateContributionLinks', args: [contributions, config], - extraDependencies: evaluate.mock(mock => ({ - iconifyURL: mock.function(() => 'icon') - .neverCalled(), - })), }); }); }); -- cgit 1.3.0-6-gf8a5