« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/snapshot/image.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/snapshot/image.js')
-rw-r--r--test/snapshot/image.js132
1 files changed, 0 insertions, 132 deletions
diff --git a/test/snapshot/image.js b/test/snapshot/image.js
deleted file mode 100644
index 1985211f..00000000
--- a/test/snapshot/image.js
+++ /dev/null
@@ -1,132 +0,0 @@
-import t from 'tap';
-import {testContentFunctions} from '#test-lib';
-
-testContentFunctions(t, 'image (snapshot)', async (t, evaluate) => {
-  await evaluate.load();
-
-  const quickSnapshot = (message, {extraDependencies, ...opts}) =>
-    evaluate.snapshot(message, {
-      name: 'image',
-      extraDependencies: {
-        checkIfImagePathHasCachedThumbnails: path => !path.endsWith('.gif'),
-        getSizeOfImagePath: () => 0,
-        getDimensionsOfImagePath: () => [600, 600],
-        getThumbnailEqualOrSmaller: () => 'medium',
-        getThumbnailsAvailableForDimensions: () =>
-          [['large', 800], ['medium', 400], ['small', 250]],
-        missingImagePaths: ['album-art/missing/cover.png'],
-        ...extraDependencies,
-      },
-      ...opts,
-    });
-
-  quickSnapshot('source via path', {
-    slots: {
-      path: ['media.albumCover', 'beyond-canon', 'png'],
-    },
-  });
-
-  quickSnapshot('source via src', {
-    slots: {
-      src: 'https://example.com/bananas.gif',
-    },
-  });
-
-  quickSnapshot('source missing', {
-    slots: {
-      missingSourceContent: 'Example of missing source message.',
-    },
-  });
-
-  quickSnapshot('dimensions', {
-    slots: {
-      src: 'foobar',
-      dimensions: [600, 400],
-    },
-  });
-
-  quickSnapshot('square', {
-    slots: {
-      src: 'foobar',
-      square: true,
-    },
-  });
-
-  quickSnapshot('dimensions with square', {
-    slots: {
-      src: 'foobar',
-      dimensions: [600, 400],
-      square: true,
-    },
-  });
-
-  quickSnapshot('lazy with square', {
-    slots: {
-      src: 'foobar',
-      lazy: true,
-      square: true,
-    },
-  });
-
-  quickSnapshot('link with file size', {
-    extraDependencies: {
-      getSizeOfImagePath: () => 10 ** 6,
-    },
-    slots: {
-      path: ['media.albumCover', 'pingas', 'png'],
-      link: true,
-    },
-  });
-
-  quickSnapshot('content warnings via tags', {
-    args: [
-      [
-        {name: 'Dirk Strider', directory: 'dirk'},
-        {name: 'too cool for school', isContentWarning: true},
-      ],
-    ],
-    slots: {
-      path: ['media.albumCover', 'beyond-canon', 'png'],
-    },
-  });
-
-  evaluate.snapshot('thumbnail details', {
-    name: 'image',
-    extraDependencies: {
-      checkIfImagePathHasCachedThumbnails: () => true,
-      getSizeOfImagePath: () => 0,
-      getDimensionsOfImagePath: () => [900, 1200],
-      getThumbnailsAvailableForDimensions: () =>
-        [['voluminous', 1200], ['middling', 900], ['petite', 20]],
-      getThumbnailEqualOrSmaller: () => 'voluminous',
-      missingImagePaths: [],
-    },
-    slots: {
-      thumb: 'gargantuan',
-      path: ['media.albumCover', 'beyond-canon', 'png'],
-    },
-  });
-
-  quickSnapshot('thumb requested but source is gif', {
-    slots: {
-      thumb: 'medium',
-      path: ['media.flashArt', '5426', 'gif'],
-    },
-  });
-
-  quickSnapshot('missing image path', {
-    slots: {
-      thumb: 'medium',
-      path: ['media.albumCover', 'missing', 'png'],
-      link: true,
-    },
-  });
-
-  quickSnapshot('missing image path w/ missingSourceContent', {
-    slots: {
-      thumb: 'medium',
-      path: ['media.albumCover', 'missing', 'png'],
-      missingSourceContent: `Cover's missing, whoops`,
-    },
-  });
-});